Forum Replies Created
-
AuthorPosts
-
dgitalyMember
Ciao!
This is the link to the products page [http://www.iltuomercatino.it/bacheca/]
Yesterday, I’ve wrote to my hosting provider telling them that I had some problems with plugins. Sincerely, I don’t know yet if they have done something by now.
Today I was able to add products to the cart but, funny enough, when I check out with PayPal, the prices come with dollars and not euros as I have setted in the setting page. Could you check also that?
Grazie again, dina
dgitalyMemberHi there,
something awkward is happening on my new website. After so much trying to understand what causes my issue (changing themes, deactivating plugins, switching browsers from IE to Chrome, ect.), I’ve no idea how to solve it.
My latest try yesterday was to install a fresh new database, a fresh new theme, a fresh new wordpress 3.9.1 installation and activated the latest version of the eStore plugin but still I’m not solving my problem.
Here’s the issue:
the add-to-cart function isn’t working properly: sometimes it adds a product to the cart and other times it doesn’t.
This awkwardness isn’t related to new changes on the site (haven’t touched it in the last 14 hours) and this morning it worked (I could add a product to the cart and after I could delete it from the cart) so everything was fine. Then I’ve tried again this afternoon but no products could be added to the cart.
Notice: I tried different themes but I continue to undergo to the same peculiar situation (sometimes the add-to-cart adds to cart, other times the add-to-cart doesn’t add to cart).
It has been days that I’m trying to make the eStore plugin work smoothly, but now I feel I’ve failed my intentions and don’t know what else to try to do.
I haven’t cache plugins activated, could this be the issue?
Grazie for prompt response, Dina
dgitalyMemberThank you for prompt reply.
Eventually I’ve done as suggested:
1. deactivated all the plugins
2. tried Twentyfourteen theme
As results, I can now confirm that the issue is a custom excerpt superspark theme function and the problem is not related to the WP eStore Plugin or eventual conflicts with other plugins.
To solve my issue I’ve requested help to GoodLayers staff for the superspark theme has a conflict with wp estore plugin.
Hope to find a quick solution.
Grazie again, dina
dgitalyMemberI have updated the eStore plugin last decembre (version 7.0.2) and the Extra Shortcodes version is 4.7.8
As for the theme, I’m using the Super Spark Theme by Goodlayers.
Do you think that that’s the issue?
dgitalyMemberHello again,
so far I added the following code to my functions.php:
remove_filter(‘get_the_excerpt’, ‘wp_trim_excerpt’);
add_filter(‘get_the_excerpt’, ‘custom_trim_excerpt’);
function custom_trim_excerpt($text = ”)
{
$raw_excerpt = $text;
if ( ” == $text ) {
$text = get_the_content(”);
//$text = strip_shortcodes( $text );
$text = apply_filters(‘the_content’, $text);
$text = str_replace(‘]]>’, ‘]]>’, $text);
$excerpt_length = apply_filters(‘excerpt_length’, 300);
$excerpt_more = apply_filters(‘excerpt_more’, ‘ ‘ . ‘[…]’);
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return apply_filters(‘wp_trim_excerpt’, $text, $raw_excerpt);
}
add_filter(‘get_the_excerpt’,’do_shortcode’);
Doing the above, I’m able to write in the excerpt shortcodes as [wp_eStore_product_details id=1 info=”description”] and [wp_eStore_product_details id=1 info=”price”] or [wp_eStore_product_details id=5 info=”available_copies”].
They work out fine.
Instead, if I add the shortcode [wp_eStore_add_to_cart id=1] it breaks the blog page.
Any help?
dgitalyMemberHello,
I was trying to add wp estore shortcodes in the post excerpt (wp 3.9.1) but it doesn’t work.
I’ve also followed your instructions and opened “wp_eStore1.php” and added the add_filter code but also this didn’t work.
Has something changed since your last answer?
Thank you
-
AuthorPosts