Forum Replies Created
-
Author
-
nichelead
ParticipantRadu, can you provide a snippet that I can add meanwhile to fix that, until the theme’s update?
Thanks!
February 8, 2016 at 19:12 in reply to: Kleo 3.1.2 incompatible with Woocommerce 2.5.0 templates on WP 4.4.1 #102708nichelead
ParticipantHi,
What’s up with Kleo update & compatibility with Woocommerce 2.5?
Thanks,
Tom
January 14, 2016 at 01:52 in reply to: Social Share buttons on Woocommerce shop & product pages #98429nichelead
ParticipantFound this:
get_template_part( ‘page-parts/posts-social-share’ );and it works.
Thanks!
January 14, 2016 at 01:45 in reply to: Social Share buttons on Woocommerce shop & product pages #98420nichelead
ParticipantI use custom template for products, and the social share buttons are not displaying there…
Is there a short code I can use to add the social share buttons?Thanks!
January 14, 2016 at 01:40 in reply to: Social Share buttons on Woocommerce shop & product pages #98419nichelead
ParticipantSorry, just saw that there is a social share option for products… I need glasses 🙂
nichelead
ParticipantIf anyone interested – this is the snippet I used to change the text of the button (‘My Account’) to my custom text (‘Exit This Order’).
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘My Account’ :
$translated_text = __( ‘Exit This Order’, ‘kleo_framework’ );
break;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘my_text_strings’, 20, 3 );Here is where I got it from:
http://speakinginbytes.com/2013/10/gettext-filter-wordpress/All the best!
nichelead
ParticipantI spent lots of time searching and did not fine yet a clear solution for this simple change.
Do I need to copy the us english po & mo files to my child theme, and there change the button text in the po file?nichelead
ParticipantI don’t understand. I don’t need a translation to different language, just to change the text of this button. Is there a snippet I can add to function.php that will do that?
nichelead
ParticipantThanks!
How do I change the button text?
I copied this config file to my child theme (themes/kleo-child/lib/plugin-woocommerce/config.php) and changed ‘My Account’ to ‘Close’, but the button still displays ‘My Account’…nichelead
ParticipantI still want the cart icon to show the blue circle with number when there are items in the cart…
nichelead
ParticipantI have 3.03 and replaced the pixelentity-themes-updater files as mentioned above, but don’t get wp-admin notification to update to 3.04
nichelead
ParticipantAbe,
I replaced the 2 files in the pixelentity-themes-updater folder as you suggested, but I still don’t get theme update notification in wp-admin, for the 3.04 update.Hello, To fix this until next theme update please update the theme files from attached archive.
Thank you
Attachments:
kleo-theme-update-fix.zip
nichelead
ParticipantI was also getting 504 timed out when trying to access wp-admin.
I commented-out line 130 as suggested by sharmstr and it fixed the problem.Thanks!
July 1, 2015 at 20:17 in reply to: Prevent footer from display in middle of page when not enough page content #66055nichelead
ParticipantThank you!
July 1, 2015 at 20:06 in reply to: Prevent footer from display in middle of page when not enough page content #66052nichelead
ParticipantHere is one similar topic I just found, but it was left unanswered…
https://archived.seventhqueen.com/forums/topic/strange-layout-css-page-after-register-user
July 1, 2015 at 19:55 in reply to: Prevent footer from display in middle of page when not enough page content #66050nichelead
ParticipantI did search for about 1 hour before I posted this question.
-
AuthorPosts