Forum Replies Created
-
AuthorPosts
-
Hi frankeee!
Thank you for using Enfold.
Which browser are you using when you test this? I tested it on Chrome and Firefox, Windows 7 and the icon shows up every time I refresh the page.
Regards,
IsmaelHey!
You can add this in the Quick CSS field:
@media only screen and (max-width: 770px) { .avia-testimonial-image { margin: 0; width: 100%; float: none; text-align: center; margin-bottom: 15px; height: auto; max-width: 80%; } .avia-testimonial-meta { margin-left: 0; } }Regards,
IsmaelHey!
I think it’s working now. Did you fix it? I was able to upload an image. http://www.nutritional-insight.co.uk/wp-admin/post.php?post=477&action=edit
Cheers!
IsmaelHey!
There are no errors generated so it’s a bit difficult to debug the issue. What happens when you use the default google maps element in the advance layout builder?
Cheers!
IsmaelHi!
You can replace the code with this:
.cart_dropdown { right: -50px; } .html_visible_cart .cart_dropdown { right: 200px; top: 2px; } #header_main {z-index: 10;}Adjust the values if necessary.
Best regards,
IsmaelJuly 25, 2015 at 6:44 am in reply to: Adding Search Icon or Search Menu Item to Mobil 'Hamburger' Menu #478564Hi Switzer!
Thank you for using Enfold.
You can try this in the functions.php file:
add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10); function avia_append_search_nav_mod() { ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items = '<div id="menu-item-search-mod" class="menu-item-search-mod menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </div>'; echo $items; }Add this in the Quick CSS field:
#menu-item-search-mod { display: block; position: absolute; right: 30%; top: 30%; z-index: 1000; } @media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #menu-item-search-mod { display: none; } }Regards,
IsmaelJuly 25, 2015 at 6:35 am in reply to: Woocommerce Category page -> Changing category description on ful width banner #478556Hi Haybazak!
Thank you for using Enfold.
I’m sorry but the inquiry is a bit unclear. What do you want to change with the category banner?
Cheers!
IsmaelHi!
This is the media query line:
@media only screen and (max-device-width: 1024px) { }Please replace the code with this:
@media only screen and (max-width: 1024px) { .main_color .av-inner-masonry-content { font-size: 12px; padding: 6px; } figcaption.av-inner-masonry-content.site-background { display: none; } }Cheers!
IsmaelHi!
Thank you for the info. Did you install the WP Rocket plugin? This plugin is incompatible with layer slider so you might have to disable it.
Regards,
IsmaelJuly 25, 2015 at 6:19 am in reply to: Adding search bar to header – can't find enfold/includes folder #478549Hi!
1.) Add this in the Quick CSS field:
.custom-form { background-color: #fff; }2.) Use this to increase the width:
#top #searchform>div { position: relative; max-width: 800px; width: 500px; }Regards,
IsmaelHi!
If I am not mistaken, you can use shortcodes or generate html code in order to add the buttons. Try to edit the includes > loop-index.php file then look for this code on line 200:
echo $content;Add the addThis code or shortcode below.
Best regards,
IsmaelHi!
You can turn no the custom css class field then add a custom class attribute to the blog post element. Remove the bottom margin.
.avia-content-slider { margin: 0; }You can replace the selector above with the custom css class attribute that you defined.
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Cheers!
IsmaelHey!
You can only find the avia_sc_events_countdown class in that specific file, nowhere else. The code means that if the “avia_sc_events_countdown” class exists or defined somewhere else, don’t define it but since it is not defined somewhere else other than this specific file, continue or define it. Like I said, the same exact code of line is working on my installation as you can see on the screenshot. I test it again on the new temp page but it’s not working. Please hire a freelance developer to help us and see what’s going on with it.
Cheers!
IsmaelHey!
Thank you for using Enfold.
They will both display by default. If you want to only display the upsells section if it’s available, use this in the functions.php file:
# # display upsells and related products within dedicated div with different column and number of products # remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 10); add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products_mod', 20); function avia_woocommerce_output_related_products_mod($items = false, $columns = false) { global $avia_config; $output = ""; if(!$items) $items = $avia_config['shop_single_column_items']; if(!$columns) $columns = $avia_config['shop_single_column']; ob_start(); woocommerce_related_products(array('posts_per_page'=>$items, 'columns'=>$columns)); // X products, X columns $content = ob_get_clean(); if($content && $avia_config['upsells'] == '') { $output .= "<div class='product_column product_column_".$columns."'>"; //$output .= "<h3>".(__('Related Products', 'avia_framework'))."</h3>"; $output .= $content; $output .= "</div>"; } $avia_config['woo_related'] = $output; return $output; } remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_upsells', 10); add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_upsells_mod', 21); function avia_woocommerce_output_upsells_mod($items = false, $columns = false) { global $avia_config; $output = ""; if(!$items) $items = $avia_config['shop_single_column_items']; if(!$columns) $columns = $avia_config['shop_single_column']; ob_start(); woocommerce_upsell_display($items,$columns); // 4 products, 4 columns $content = ob_get_clean(); if($content && $avia_config['woo_related'] == '') { $output .= "<div class='product_column product_column_".$columns."'>"; //$output .= "<h3>".(__('You may also like', 'avia_framework'))."</h3>"; $output .= $content; $output .= "</div>"; } $avia_config['woo_upsells'] = $output; return $output; }Best regards,
IsmaelHi!
Please ask the plugin author how they hook their plugin to render the plugin’s tools on posts. They don’t necessarily need to classify if it’s a post or a page. Plugins usually use javascripts, action and filter hooks in order to append codes or scripts on different parts of the page.
http://codex.wordpress.org/Plugin_API/Filter_Reference
http://codex.wordpress.org/Plugin_API/Action_ReferenceRegards,
IsmaelHey!
You can use this in the Quick CSS field:
.comment-count { display: none; }Cheers!
IsmaelHey!
I think you didn’t install WordPress correctly. The best thing to do is to contact your hosting provider to help you setup your WordPress installation. We can then install the theme after.
Cheers!
IsmaelHi sublime5o!
Thank you for using Enfold.
You can follow the instructions here: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Regards,
IsmaelHi!
Yes, I know that. The problem is, if you didn’t set the blog style to use the advance layout builder then you will not be able to use the advance layout builder to modify the blog page. If the blog style is set to multi grid or single author, the page will use the default blog template.
Regards,
IsmaelHey george!
Thank you for using Enfold.
You can convert the flags to text symbols using css. Please refer to this link: https://kriesi.at/support/topic/wpml-text-lang-switcher/#post-451922
Best regards,
IsmaelHi!
Glad it is fixed. The error regarding the sidebar is brought by the WP 4.2 update which requires the register_sidebar function to set an id to sidebars or widget areas. If possible, please don’t use cyrillic characters when creating custom widget areas.
Best regards,
IsmaelHi!
You can find the code in includes > loop-index.php file. Unfortunately, the get_the_term_list function doesn’t have any arguments or options to exclude child categories. You need to rewrite the code. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelHi!
One of these plugins is causing the issue. If deactivated, the title shows fine:
Img Title Removal
No Title TooltipsPlease contact the plugin author.
Best regards,
IsmaelHi noamman!
Thank you for using Enfold.
Add this in the Quick CSS field:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .avia-caption-content, .avia_transform .av_slideshow_full .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, .avia_transform .av_fullscreen .avia-caption-title, .avia_transform .avia-slideshow-button { animation: none !important; -webkit-animation: none !important; visibility: visible !important; }Good job on the site. :)
Regards,
IsmaelHi eyeweb!
Thank you for using Enfold.
Where exactly in the top bar do you want to place the cart icon? A screenshot will help. Use imgur or dropbox.
Best regards,
IsmaelHi!
Enfold is retina ready in a way that you can set custom thumbnails in a specific element. For example, if you use the portfolio grid element, you can select a custom thumbnail. To make the portfolio grid images retina ready, just select thumbnails that is twice the size of the actual container. You can do this method in most of the elements with images.
And to answer the question above, no, the theme cannot serve different image on retina devices.
Regards,
IsmaelHi!
Thank you for the update. Post the login details, we would like to check it.
Cheers!
IsmaelHi!
Thank you for the info.
I deactivated the plugins but it’s still not working. Did you modify any theme files? If you check the console, there is a javascript error coming from the WP core files. Please override the WP files with a fresh copy then test it again.
Best regards,
IsmaelHi!
Thank you for using Enfold.
Can you please provide a link to the actual page with the issue? You can set a minimum height to the main container:
#main > div { min-height: 600px; }Regards,
IsmaelHey!
What do you mean by “demo pages do not work on the actual site.”? I checked random demo pages and they are working:
http://purplepeepal.com/home-v10-magazine/
http://purplepeepal.com/homepage/home-v2-3-col-images-contact/
http://purplepeepal.com/home-v6-classic-4-column/Cheers!
Ismael -
AuthorPosts
