chillmen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Very slow page speedHi,
Have you changed any css code in your theme or somewhere else, if there is an error in the css file, i think it can break things.Forum: Plugins
In reply to: [Force Regenerate Thumbnails] Resizing failsSame error message for me too
Forum: Plugins
In reply to: [Mobile Theme Ads for Jetpack] Illegal string offsetYes it’s working now.
First time i changed only the code from <th scope=”row”> to </td>
When i changed the whole “jp-minileven-ads.php” code, it worked.
Thank you a lot for your help and your time.Forum: Plugins
In reply to: [Mobile Theme Ads for Jetpack] Illegal string offsetHi,
The first problem is solved no more warning,
but now if i check the 3 options front, posts and pages, only pages left checked when i saveForum: Plugins
In reply to: [Mobile Theme Ads for Jetpack] Illegal string offsetHi,
I checked that, nothing to report.
If you want to check that directly let me know where to send you login infos.Forum: Plugins
In reply to: [Mobile Theme Ads for Jetpack] Illegal string offsetHi,
Deactivate plugins one by one show no improvement,
I’ve made a test on another website exactly same problem.
I tought it could be related to the theme, i’m using genesis framework, i change it to twenty twelve, no improvement.
Also there is something strange, if i save the plugin for the second time the warning disappear, i save again the warnings are back, i save again they gone, etc…Forum: Plugins
In reply to: [Mobile Theme Ads for Jetpack] Illegal string offsetHi,
Here is the code:
Array ( [before_content] => 1 [show] => 1 [google_ad_client] => ca-pub-xxxxxxxxxxxxxxxx [google_ad_slot] => xxxxxxxxxx [google_ad_width] => 320 [google_ad_height] => 50 [custom_ad_code] => )Thanks
Forum: Reviews
In reply to: [Autoptimize] AdwareThis plugin is excellent, @aj +1
I found a solution, exclude custom post types from wp default search results, for woocommerce custom post type is “product” and i don’t need to make the products hidden.
You can use it to exclude any custom post type from wp search results page./** Exclude woocommerce products from wp default search results */ add_action( 'init', 'update_my_custom_type', 99 ); function update_my_custom_type() { global $wp_post_types; if ( post_type_exists( 'product' ) ) { // exclude from search results $wp_post_types['product']->exclude_from_search = true; } }
I tried to use this code in functions.ph file, but it does not work, products are still showing in results page:
// create search filter function xmit_search_filter($query) { if ( !$query->is_admin && $query->is_search) { $query->set('cat','-432,-434'); } return $query; } add_filter( 'pre_get_posts', 'xmit_search_filter' );
Someone any idea?
Forum: Plugins
In reply to: [Add Local Avatar] alt tag on imageThank you for this, i’m agree should be included in next updates!
Forum: Plugins
In reply to: [Social Count Plus] Using functions display only number of followersThank you very much Claudio. It’s working perfect.
Thanks a lotForum: Plugins
In reply to: [LightPress Lightbox] It doesn't work with Next GalleryThank you @brandon.hcreativemedia your solution works
Forum: Plugins
In reply to: [Genesis Grid] Display teaser images before title?@livelovepasta you add this code to functions.php, it’s working for me!
Thanks @nutsandboltsmedia and @bill EricksonI use jetpack on every wordpress website. i don’t use all the plugin that jetpack offers, but if they add a social login plugin for google+ and facebook too, it will be great.