Forum Replies Created
-
AuthorPosts
-
Hi,
As I understand the subscription is to keep WPML updated with improvements and bug fixes, it doesn’t effect your site’s functionality, you will still be able to use the plugin as before.
At some point you will probably use all of your translation credits for the built-in auto translation, but you can still manually translate your new pages with Google Translate and save it to your site.Best regards,
MikeHi,
Sorry we are limited in our support of third-party plugins, please follow the Polylang instructions ▸ Can I use my own flags for the language switcher or reach out to the Polylang support for further assistance.Best regards,
MikeHi,
Thanks for the login, the error is coming from the file at includes/loop-about-author.php which is what displays the author page.
This file has beed edited and a chunk of the file is missing, I assume as part of your customization, I recommend asking whoever was helping you to compare it with a original version of the file from your Envato (Theme Forest) account and try to figure out what is needed for your customization.
I see that you are not using a Child Theme and your functions.php contains a lot of customizations, please note that this will be lost when you update. Please consider installing a child theme and move all of your customizations to it, since I see the loop-about-author.php was modified I assume that other core theme files were also modified and should be saved in a child theme before the next update.
I can see a lot of work went into your customization and it looks complicated, so I’m sure that you would not want to lose any of this.Best regards,
MikeHi,
Glad to hear, please let us know when we should close this thread.Best regards,
MikeHi,
Please check your logo in the footer, it has empty space on the right, (all sides) I believe that if you edit the image so the logo is to the edge on the image the right side will align up with the edge of the contaier and be where you want it.Best regards,
MikeSeptember 24, 2023 at 8:44 pm in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1420202Hi,
I added this to your functions.php and it has moved the product image below the product summary, please check.remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_show_product_images', 25 );Best regards,
MikeHi,
Thanks, I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_action('woocommerce_after_shop_loop_item_title', 'display_custom_attribute_in_product_grid', 10); function display_custom_attribute_in_product_grid(){ // HERE define the desired product attributes to be displayed $defined_attributes = array('autore'); global $product; $attributes = $product->get_attributes(); if ( ! $attributes ) { return; } $out = '<ul class="taste-attributes">'; foreach ( $attributes as $attribute ) { // Get the product attribute slug from the taxonomy $attribute_slug = str_replace( 'pa_', '', $attribute->get_name() ); // skip all non desired product attributes if ( ! in_array($attribute_slug, $defined_attributes) ) { continue; } // skip variations if ( $attribute->get_variation() ) { continue; } $name = $attribute->get_name(); if ( $attribute->is_taxonomy() ) { $terms = wp_get_post_terms( $product->get_id(), $name, 'all' ); // get the taxonomy $tax = $terms[0]->taxonomy; // get the tax object $tax_object = get_taxonomy($tax); // get tax label if ( isset ( $tax_object->labels->singular_name ) ) { $tax_label = $tax_object->labels->singular_name; } elseif ( isset( $tax_object->label ) ) { $tax_label = $tax_object->label; // Trim label prefix since WC 3.0 if ( 0 === strpos( $tax_label, 'Product ' ) ) { $tax_label = substr( $tax_label, 8 ); } } $out .= '<li class="' . esc_attr( $name ) . '"style="width:100%" >'; $out .= '<span class="attribute-label">' . esc_html( $tax_label ) . ': </span> '; $tax_terms = array(); foreach ( $terms as $term ) { $single_term = esc_html( $term->name ); array_push( $tax_terms, $single_term ); } $out .= '<span class="attribute-value">' . implode(', ', $tax_terms) . '</span>'; } else { $value_string = implode( ', ', $attribute->get_options() ); $out .= '<li class="' . sanitize_title($name) . ' ' . sanitize_title( $value_string ) . '">'; $out .= '<span class="attribute-label">' . $name . ': </span> '; } } $out .= '</ul>'; echo $out; }and now the author is showing in the product grid and in the Related products at the bottom of product pages:

Best regards,
MikeHi,
Try going to Enfold Theme Options ▸ Frontpage Settings and make sure the Frontpage is set

If that doesn’t help try going to WordPress ▸ Settings ▸ Reading ▸ Your homepage displays and set the frontpage there:

Then check your Pages ▸ All Pages and the frontpage should say Front Page like this:

Otherwise, please disable your JetPack plugin and post the admin login in the Private Content area so we can login and check.Best regards,
MikeHi,
I reviewed the code in the pastebin and it looks like the code was doubled, and this was noted in the other thread, so I removed the extra code and also commented out the extra line:
content_wrap.avia_swipe_trigger( {prev:'.av_prev_tab_section', next:'.av_next_tab_section'} );
and now the 4 icons are showing at the top in a grid instead of off the screen,

so if you are not seeing it like this then clear your cache or open a private window until you do.
If for small screens you want the 4 tabs to be in a single row, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 430px) { #top.page-id-196 .av-section-tab-title { padding: 1px 2px 0px 2px; } #top.page-id-196 .av-tab-section-icon { font-size: 20px; } #top.page-id-196 .av-inner-tab-title { font-size: 10px; } #top.page-id-196 .av-section-tab-title { width: 25%; } }Best regards,
MikeHi,
It sounds like you have this sorted out now, shall we close this then?Best regards,
MikeSeptember 24, 2023 at 4:07 pm in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1420192Hi,
Your test product has nothing in the Product description & Product short description, I assume that you will have text in one of these two places and you want this text to be above the image with the title and price, correct? Please add a sample like you plan on having it.
I believe you want everything at Deine Individualisierung and below to stay under the image, correct?Best regards,
MikeHi,
Ok, thanks. Perhaps also a simple example layout that we can easily duplicate, like the four 1/4 columns in my screenshot above.Best regards,
MikeHey dannyl82,
Try checking the user profile fields for bad characters, or try checking your child theme for code snippets in the functions.php, try enabling the parent theme.
Or try removing any code in your Enfold Theme Options ▸ Google Services ▸ Google Analytics Tracking Code
Otherwise please include an admin login in the Private Content area so we can investigate.Best regards,
MikeSeptember 24, 2023 at 1:06 pm in reply to: Spacebar not working in “Special Heading” and “Timeline” with SPECTRA plugin #1420179Hi,
Glad to hear that you have sorted out the conflict, shall we close this thread then?Best regards,
MikeSeptember 24, 2023 at 1:03 pm in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1420178Hi,
If you want it to work for every product try using this snippet for all products:.single-product .single-product-summary { float: left; }For your next request of puttin the title and the short description above the image, do you want this for all products?
It looks like you want to split the short description in half leaving the “cloud” & “drop files here” below the image, splitting this section in half may be hard, will every product have this? Please include a admin login so we can examine this closer.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,
MikeHey Oriano,
I’m not sure if this is possible, but do you have a staging site with the other modifications active that we can test on?Best regards,
MikeHey mustafa-alani,
I believe that you will need to add some code to the end of your child theme functions.php, please see this thread.
But I believe that to change some of your layout you will need to use a plugin like WPML, please see our documentation
When you use the plugin it changes the them admin panel so that each language can have a different layout, so in one language the logo can be on the left, and in the other it will be on the right, and the footer widget columns can be to opposite to each other. This is not done via RTL language files, they only change the text so it you also want to change the layout you will need to manually do so.Best regards,
MikeHi,
Thank you for the link to your site, when I checked your site the child theme was not active so the customization was not active, I enabled the child theme and now the swipe seems to be disabled since I can use the calculator slide bars without swiping the tabs. Please clear your browser cache and check.
Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeHi,
Glad to hear that you have this sorted out, 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,
MikeSeptember 23, 2023 at 10:33 pm in reply to: Unable to update the images in “Portfolio Items” #1420152Hi,
I see that you have no portfolio items so your element on the page /projekt/ has nothing to show, so I restored 4 portfolio items from your trash and added gallery images to them:

now on your /projekt/ page the 4 portfolio items show

and when you click on the gallery for it will show

hovering over a thumbnail will showit in the large window

and clicking it will open a lightbox

please reviewBest regards,
MikeSeptember 23, 2023 at 10:03 pm in reply to: Quantity field no longer shows on product page for variable products #1420150Hey tremblayly,
It looks like the inner elements are missing from the quantity field, I’m not able to reproduce this on my test site, first check that your woocommerce is up to date and then try deactivating your child theme and see if you still have a issue, perhaps it is due to a customization in your child theme.
If you have a header.php or footer.php in your child theme please remove these, they are the top reason for error after updating, otherwise include admin login to your staging site.Best regards,
MikeHi,
As I understand your issue, on mobile in portrait mode you are seeing this instead of the full image:

Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 450px) and (orientation: portrait) { #full_slider_2 .avia-slideshow-inner { height: 100vh !important; } }After applying the css, please clear your browser cache and check.
This is the expected results:

It looks like landscape is fine:

Best regards,
MikeSeptember 23, 2023 at 9:15 pm in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1420146Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.single-product .single-product-summary { float: left; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey profumopuntoit,
This is pretty tricky to get it exactly as your screenshot, but try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive table.shop_table td { display: table-cell; } .responsive .shop_table .product-quantity { display: inline !important; } #top .order_details .product-name li { margin: auto; padding: 0; border-right: none; } #top .order_details li { border-right: none; } #top table.shop_table td { padding: 5px; } }Best regards,
MikeHi,
Glad that this helped, we will go ahead and close this then, but please create a new thread if you have any further questions and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thank you for your patience and the link to your site, I couldn’t find the above css on your site, but I believe the reason it doesn’t work is because the css is for the social share buttons and not the custom [social-bookmarks] shortcode that you are using. Nonetheless try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:/* Icon style */ .widget .social_bookmarks li a { width: 30px!important; height: 30px!important; line-height: 24px !important; border-radius: 30px!important; padding: 3px 0 !important; background: #fff !important; } /* Icon color */ .widget .social_bookmarks li a:before { color: #00737A; transition: all .5s ease; } /* Icon color on hover */ .widget .social_bookmarks li a:hover:before { color: #000; transition: all .35s ease; }After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts





