webdevbytes
Forum Replies Created
-
In your example I would want to get all posts, pages, movies, and also books but only the ones that are written in English (so with a tax term set to english).
Forum: Plugins
In reply to: [LiteSpeed Cache] ESI rewrite rule in htaccess not workingIt works if
<IfModule LiteSpeed> RewriteRule .* - [E=esi_on:1] RewriteRule .* - [E=cache-control:max-age=120] <IfModule>
is added before the instructions added by the plugin.
- This reply was modified 5 years, 1 month ago by webdevbytes.
Thanks for the feedback.
Same deal without the custom walker. As soon as there are 5 or more comments, the user’s comment does not appear. I think this has to do with the fact the results a being displayed in reverse with order reverse_top_level.
If you need to fix the error ASAP,
Edit file simpleslider.php.At line 40, replace:
wp_register_script( 'jquery-ui-custom', plugins_url('jquery-ui-1.8.15.custom.min.js', __FILE__ ), array( 'jquery' ),'1.8.15', false );
with :
wp_register_script( 'jquery-ui-custom', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js' );
Basically the jquery-ui version that the plugin is loading is incompatible with the latest jQuery library.
Forum: Fixing WordPress
In reply to: Call to undefined function wp_mailI came across the same issue while using wp_mail() in an ajax function.
Make sure to activate the hook with :do_action( 'wp_ajax_my_ajax_action' );
Forum: Plugins
In reply to: [Simple Fields] [Plugin: Simple Fields] WP Media uploader does not workExactly the same thing here happens with WP3.2 and and WP3.3beta4.
Please let us know if this is being looking into of if we need to find another solution.
Otherwise thanks for all your great plugins !
Forum: Plugins
In reply to: W3 Total Cache causing problems with theme menuYup I’m getting the same issue. It’s weird.
On my end I’ve been able to track it down the source of the bug. The function get_post_ancestors() returns an empty array even when there are 1 or more ancestors and $post->post_parent is true.
if ($post->post_parent) // true{ $ancestors=get_post_ancestors($post->ID); // returns empty array }
When I deactivate Total Cache, all goes back to normal.
Forum: Fixing WordPress
In reply to: Remove the div and ul tags from wp_nav_menu() functionFor any one with this issue use the extra param:
'items_wrap' => '%3$s'
Forum: Plugins
In reply to: [CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPML@p?r – Sorry to tell you this issue has not been resolved for me in version 0.7.17. Let me know if I can help.
Forum: Plugins
In reply to: [CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPML@romutpois Could you confirm that your updated code fixes the issue?
Forum: Plugins
In reply to: [CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPMLI am also getting this issue with
CMS Tree Page 0.7.16
WPML 2.1.2
WP 3.1