i3inary
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Error: Invalid file extensionOk connected to remote debugging:
https://developers.google.com/web/tools/setup/remote-debugging/remote-debuggingFound that I did not properly purge my cache after making plugin changes. Easy to notice this if you switch widget ui and params not updated from my settings screen changes.
I then cleared all caches again a few times.
Things started uploading. I was able to upload the file no problem so the culprit was that the params were caching for some reason on my phone even in incognito tabs.
Moral of the story is quadruple check cache is cleared.
Thanks.
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] How to configure?Thanks for your reply. Updating now.
Forum: Reviews
In reply to: [Gravity Forms Advanced File Uploader] The Best with Quick SupportI will promptly update to a 5 when it works as advertised.
The 1 star is because I spent a couple hours troubleshooting broken code and my time is worth 4 stars just like yours is.
I deal with apps in the app store and this is how things get fixed and how our users request bugfixes that get implemented for us also. I just assumed things work like this on a smaller scale also.
I can remove if you think it will drive your installs down in the meantime…my intention is to remind you and I to go back and fix this with some kind of an incentive.
Same problem with a vanilla gravityform.
Forum: Fixing WordPress
In reply to: Error: -200????Same problem anyone find a fix?
+9 to this. I am going to have to fork this because its a deal breaker. I will wait a week and watch this thread for a reply.
Forum: Plugins
In reply to: [Yoast SEO] Facebook showing wrong titles, tried everything now…Just saw your post while I was searching for an answer. In short next update or fix yourself for now.
https://www.ads-software.com/support/topic/facebook-ogtitle-not-working-properly
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Warning Array Key Exists Error …Also having this error please send me support information.
Forum: Plugins
In reply to: [Social Media Widget] Fix CSS Enqueueing for SSL CompatibilityAwesome thanks!
Forum: Plugins
In reply to: [JQuery Accordion Menu Widget] Display menu description field in menuI think you misunderstood me. I want to show the menu “description” field under the menu “navigation label”.
I found a solution but I had to modify the plugin code:
https://wordpress.stackexchange.com/questions/14037/menu-items-description-custom-walker-for-wp-nav-menuAside from adding that custom class to my functions.php I had to modify the following files:
dcwp_jquery_accordion.php (line 118)$out .= wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $menu, 'menu_class' => $menu_class, + 'echo' => false, + 'walker' => new Description_Walker + ) ); $out .= '</div>'; return $out; }
dcwp_jquery_accordion_widget.php (line 76)
<?php wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $nav_menu, 'container' => false, 'menu_class' => $classMenu, 'walker' => new Description_Walker ) ); ?> </div> <?php
Hopefully this will help someone else.
Figured it out. I think the dashes threw me off. I thought that since I had so many subcats that it was only showing the subcats when I looked closer I found that all the categories actually had dashes in front of them and there was no indentation of the subcats at all.
Also it didn’t help that I enabled order by “number meta value” and I didn’t actualy have it assigned to the posts yet.
You are the man. Many thanks for the help and sql code!
Also trying to find a syncing solution for bbPress 2.0 anyone have any information?
Forum: Plugins
In reply to: [Plugin: Search Everything] Search Every Category Name Not WorkingHERE IS THE FIX:
im using 4.7.5 and got errors if i enabled Search every category name or Search every custom field (metadata).
the problem is related to a missing open parenthesis in 2 of the functions:
SE4_search_metadata
SE4_search_categories.to fix this open plugins/search-everything/search_everything.php and search for the text:
post_status='publish') ";
change it to:
(post_status='publish') ";
fyi: for version 4.7.5 i had to do this on 3 lines 239, 241, and 268.
im using 4.7.5 and got errors if i enabled Search every category name or Search every custom field (metadata).
the problem is related to a missing open parenthesis in 2 of the functions:
SE4_search_metadata
SE4_search_categories.to fix this open plugins/search-everything/search_everything.php and search for the text:
post_status='publish') ";
change it to:
(post_status='publish') ";
fyi: for version 4.7.5 i had to do this on 3 lines 239, 241, and 268.