Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for your patience, I found a different solution in my test I found that the “author” attribute must be set in the WooCommerce ▸ Attributes ▸ Add new attribute and not manually added on the product page in order to be named correctly.
Please note that the Slug “author” is not allowed because it is a reserved term, so we will use “authors”
This will name the attribute pa_authors so we can call it.
Then on the product page add the “value” for the attribute:
and this function in your child theme functions.php:add_action( 'woocommerce_single_product_summary', 'product_attribute_dimensions', 25 ); function product_attribute_dimensions(){ global $product; $taxonomies = array('pa_authors'); foreach($taxonomies as $taxonomy){ $value = $product->get_attribute( $taxonomy ); if ( $value ) { $label = get_taxonomy( $taxonomy )->labels->singular_name; echo '<p>' . $label . ': ' . $value . '</p>'; } } }
Then the attribute will show on the frontend:
Best regards,
MikeHi,
Try removing your opacity and add this css:@media only screen and (max-width: 1249px){ #main #teaserhome:before { content:""; display: block; height: 100%; position: absolute; visibility: visible !important; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255,.5)!important; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the feedback, we will leave this open until we hear back from you.Best regards,
MikeHi,
Glad to hear this helped, for mobile it looks like you are overriding the 100vh with 100%!important:@media only screen and (max-width: 480px){ .av-layout-grid-container { height: 100% !important; } }
I recommend using 100vh;
and for the inner container you are adding: height: auto !important;media only screen and (max-width: 767px){ .responsive #top #wrap_all .av-flex-cells .no_margin { display: block; margin: 0; height: auto !important; overflow: hidden; float: left; clear: none; width: 100%; } }
I recommend setting the height to 50vh like this:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main .av-flex-cells .no_margin { height: 50vh !important; } }
and changing the top padding for mobile to 20px from the current 70px, this looks like the text will then fully show, you could also tweak the font size a little or change the image height a little to allow more room for the text.
Best regards,
MikeHi,
Glad to hear that you have this sorted out, and thanks for sharing your solution, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 13, 2023 at 1:10 pm in reply to: Since Enfold 5.4 Google reCaptcha V2 only in english #1397738Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Enfoldfanatic,
Thanks for your question, your css doesn’t have enough specificity, to correct please try this css:#top .all_colors .verhoging p { line-height: 2.3em; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Please link to where we can see the menu, is the text in the menu “shoppincart” and ”my account” or is the text of the links something different?Best regards,
MikeHey Fred,
You can set the burger menu for desktop at Enfold Theme Options ▸ Main Menu ▸ General ▸ Menu Items For Desktop ▸ Display as icon
To have burger on the right and the logo on the left go to Enfold Theme Options ▸ Header ▸ Header Layout ▸ Menu and Logo PositionBest regards,
MikeHi,
Thanks for your patience and the link to your page, I have tried to reproduce the issue on my test site by installing Rank Math and adding the Table of Content to a post:
but the Table of Content doesn’t show in the Blog Grid excerpt:
Have you added any function or plugins to alter the excerpts?Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 12, 2023 at 9:41 pm in reply to: Code block element removing HTML tags on update page #1397673Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 12, 2023 at 9:21 pm in reply to: Code block element removing HTML tags on update page #1397669Hi,
Glad to hear this helped, unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeFebruary 12, 2023 at 7:57 pm in reply to: Code block element removing HTML tags on update page #1397666Hi,
Thanks for the feedback, I added the 3 shortcode functions to your child theme functions.php and created a new test page linked below, please check and see if you can add the shortcodes to your language pages.Best regards,
MikeFebruary 12, 2023 at 7:47 pm in reply to: Although all of my pages are accessible in admin mode, they do not show live #1397665Hi,
Thanks for the login but it didn’t work for me, I also tried your email address but it didn’t work, please check.
Otherwise to grant us admin access try this:- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days ( to be sure that we have enough time to debug ).
- Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
Best regards,
MikeHi,
Thanks I found this article: Display Custom Products Attributes
When I tested it on my demo site by adding the attribute “author” to a product it showed the attribute as in your screenshot, please give a try.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 12, 2023 at 6:58 pm in reply to: Code block element removing HTML tags on update page #1397660Hi,
Thanks, the 3 scripts are using the same div selector and the same variables, so when the javascript ran it filled all 3 divs with the same content, this is why you couldn’t use all 3 on the same page, and is probably related to the issue with the translated pages.
So I modified the 3 scripts so they could show on the same page, please see your test page linked below.
So this is a good step forward, I tried applying this to your translated test page but it didn’t work and I seemed to have unlinked them from each other, please check.
I’m not a WPML expert, but I think that if you could edit these 3 pages independently with the code block the scripts should work.
I was able to create 3 shortcode functions to show your scripts with the following shortcodes on my test page:
[wordart_en]
[wordart_es]
[wordart_fr]
so perhaps this could be another approach.
Try seeing if you can copy the modified codes from your test page and add them to your test language page and see if that works if you edit the pages individually, if not I can add the shortcodes I created to your child theme functions.php and we can see if that helps.Best regards,
MikeHi,
Thanks for the feedback and glad to hear that it seems to be resolved, I’m not sure how else it could have been added.
We will go ahead and close this now, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 12, 2023 at 4:55 pm in reply to: Vertical alignment problem / text element / only in FireFox #1397655Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeFebruary 12, 2023 at 4:04 pm in reply to: Vertical alignment problem / text element / only in FireFox #1397650Hi,
Thanks for your screenshot, when I test on Firefox v110.0b9(64-bit) Windows, the test is in line with the image.
When I tested on Mac I saw the issue issuing Firefox v109.0.1(64-bit), unfortunately, there doesn’t seem to be a Firefox update for Mac at this time.
Safari and Chrome on Mac doesn’t have this error, so unfortunately it seems that the error is with Firefox v109.0.1 and it will be corrected in Firefox v110.0b9 when it becomes available for Mac.Best regards,
MikeFebruary 12, 2023 at 3:42 pm in reply to: Code block element removing HTML tags on update page #1397648Hi,
Thanks for the feedback, I tried copying the word cloud code blocks from the three pages to my test site and notice none are in English, all three seem to be the same language, please check your pages.
Can you try posting the three different code blocks on a test page, or different test pages so I can try them.
I’m thinking that a solution might be to turn your scripts into shortcodes.Best regards,
MikeHi,
Thank you for explaining, Envato Market is the exclusive licensor for Enfold, please see our listing here.
We are not able to directly license, all orders must be made through Envato Market.Best regards,
MikeFebruary 12, 2023 at 2:29 pm in reply to: Code block element removing HTML tags on update page #1397640Hi,
Thanks for your feedback as I understand your goal, the Word Cloud script in the code block contains javascript and base64 code to create the Word Cloud, I believe that you are hoping that the WPML Translation can change the text in the script to different languages, but instead it seems to be breaking the javascript, please note that on your French the code block script has been broken with extra tags. When translating the “text” in a javascript code you need to be careful to not change the “variables” or “functions” which use words also but it’s not the same, so for an automatic program to search javascript code and recognize only “text” when translating whould be very difficult, it’s not the same a translating a article.
I see your point about the less complicated date/time code block translating well, but I believe that that points to the complicity of the Word Cloud code and WPML Translation not being able to handle it.
I recommend trying to recreate the Word Cloud script in your three languages at your external service and then manually add the scripts to your pages in the code block after they have been created.Best regards,
Mike -
AuthorPosts