jflayhart
Forum Replies Created
-
Forum: Plugins
In reply to: [Logo Carousel] same carousel shown when using the 2 on a pageSo I did a bit of debugging and not sure if this exactly solves the issue, but it is working for me.
On line 124 I changed the function code under
function kiwi_logo_carousel_shortcode( $atts, $content = null ) {
from
extract( shortcode_atts( array( 'id' => 'default', ), $atts ) );
to
foreach($atts as $id){ extract( shortcode_atts( array( 'id' => $id, ), $atts ) ); }
Seemed to fix the issue. Was kinda silly when the atts were already there, but weren’t being applied.
Forum: Plugins
In reply to: [Logo Carousel] same carousel shown when using the 2 on a pagesame issue… looks like I will need to hack the plugin to make it work the way it’s supposed to… There seems to be an error for an illegal post type call in admin… so not sure if that is any issue, also illegal headers are called with this plugin.
Notice: Undefined variable: post_id in /Users/joshflayhart/Sites/BIG/aidt/wp-content/plugins/kiwi-logo-carousel/kiwi_logo_carousel_admin.php on line 198 Warning: Cannot modify header information - headers already sent by (output started at /Users/joshflayhart/Sites/BIG/aidt/wp-content/plugins/kiwi-logo-carousel/kiwi_logo_carousel_admin.php:198) in /Users/joshflayhart/Sites/BIG/aidt/wp-includes/pluggable.php on line 1121
Forum: Plugins
In reply to: [Logo Carousel] Plugin Injecting itself into nav menuNevermind, I debugged the issue. There was an extra call to the carousel in functions.php. New issue, however, is that the manage carousel settings do not do anything to modify the front end slider. Even if I select vertical… And I want to make up to 8 logos visible at once with the prev/next buttons stepping 1 logo each time.
Forum: Reviews
In reply to: [Logo Slider] Elegant simple plugin, but lacks featuresAgreed. Not best mobile support. You say this plugin is responsive, but it’s not. I had to make my own edits and even then there are some drawbacks.
Forum: Plugins
In reply to: [Collapsing Categories] incompatible with 3.8?Nothing is showing for me either except the widget title. Please fix! I really need this plugin to work ??
I found out that I had to comment out this on line 221:
$docscontent .= $this->organized_docs_content_nav();
Otherwise it shows blank pages…
Forum: Plugins
In reply to: [Organized Docs] Random footer widget well displays on single doc postsok so, it seems you just go ahead and replace every living sidebar ever for a docs singular post… why was it done this way? Can’t you just target the blog’s primary-sidebar and be done with it? I want to add footer widgets and stuff, but it just all gets overwritten by your doc-sidebar. Kinda inconvenient ?? Although, I have enjoyed working with your plugin, just frustrated with this one aspect of it ha
Forum: Plugins
In reply to: [Organized Docs] Docs widget overwrites my footer widget contentsOk, I ended up just targeting that and used display: none… Still need help with the original topic.
Forum: Plugins
In reply to: [Organized Docs] Docs widget overwrites my footer widget contentsAlso, I don’t like my pages looking like posts and the post title is “(Untitled)”. How can disable this layout for docs post types?
Forum: Hacks
In reply to: How To Properly Generate and Update Metadata Image Information In WordPressSo it seemed the issuse, mainly, was gravity forms method of “gform”after”submission” I needed to change it to PRE submission and the following:
//Add uploaded image to media library add_action("gform_pre_submission", "image_submission", 10, 2);//changed from gform_*after*_submission function image_submission() { if($_FILES['input_5']) { $parent_post_id = 9; // change it to your desired post id require_once(ABSPATH . 'wp-admin/includes/file.php'); require_once(ABSPATH . 'wp-admin/includes/image.php'); require_once(ABSPATH . 'wp-admin/includes/media.php'); $attach_id = media_handle_upload('input_5', $parent_post_id); update_post_meta($parent_post_id,'_thumbnail_id',$attach_id); }
However I am still getting an exifography error and I don’t know what it is and why the location isn’t showing up even though I have it selected to do so.
Forum: Hacks
In reply to: How To Properly Generate and Update Metadata Image Information In WordPressthe issue is that it USED to work, now it doesn’t ha. It is SO strange….
I am using the short code from the exifography plugin that kristerella made
Forum: Hacks
In reply to: How To Properly Generate and Update Metadata Image Information In WordPressForum: Hacks
In reply to: How To Properly Generate and Update Metadata Image Information In WordPressAnyone know what the heck is wrong here because I can’t get anywhere with this even though I feel I’ve done it correctly according to Codex ?? I get all these errors saying missing metadata etc when viewing attachment.