Tagged: x
-
AuthorPosts
-
August 24, 2016 at 3:48 pm #1145383
The login should work now
August 24, 2016 at 11:09 pm #1146013Hi there,
Please change this code,
function add_hentry_class($classes){ if ( x_is_product() ) { $classes[] = 'hentry'; } return $classes; } add_filter('post_class', 'add_hentry_class');
to this,
function add_hentry_class($classes){ if ( is_search() ) { $classes[] = 'hentry'; } return $classes; } add_filter('post_class', 'add_hentry_class');
The hentry is not applied on search page items. And your FTP isn’t working, can’t connect to it.
Thanks!
August 25, 2016 at 9:04 pm #1147608This reply has been marked as private.August 26, 2016 at 12:04 am #1147774Hi there,
I made some changes to /wp-content/themes/x/framework/views/global/_index.php but it’s not taking any effect. I did intentionally trigger an error and even provided dummy texts and it’s not appearing.
I cleared cache and still the same. Since this is hosted on WPEngine, would it be okay to enable your dev site where cache are disabled?
Thanks!
August 26, 2016 at 2:07 am #1147865This reply has been marked as private.August 26, 2016 at 2:13 am #1147874Hi there,
Thanks, it working here http://bezambar.staging.wpengine.com/?s=a and template content-product.php are displaying the added information
Excerpt
Price
SKUNow, edit your content-product.php and format it, or even add structure to make it more reasable.
Cheers!
-
AuthorPosts