Forum Replies Created
-
AuthorPosts
-
May 30, 2015 at 8:27 am in reply to: Single Product Page is strange: sidebar appears UNDER product #451940
Hey!
Unfortunately, that modification is no longer working. It presents too much layout complications. Try to add this to the functions.php:
# # wrap single product image in an extra div # function avia_add_image_div() { echo "<div class='single-product-main-image alpha'>"; } function avia_close_image_div() { echo "</div>"; } # # wrap single product summary in an extra div # function avia_add_summary_div() { echo "<div class='single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; //close out the summary get_sidebar(); } function avf_product_sidebar_layout_mod($layout){ if( is_single() )$layout = "sidebar_left"; return $layout; } add_action('init', 'ava_product_sidebar_mod'); function ava_product_sidebar_mod() { add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 ); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 ); add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 ); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 ); add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5); }Edit config-woocommerce > config.php file, look for this code:
$sidebar_setting = avia_layout_class( 'main' , false );Replace it with:
$sidebar_setting = apply_filters( 'avf_product_sidebar_layout', avia_layout_class( 'main' , false ) );After that, add this in the Quick CSS field.
.single-product .product { width: 68%; margin-left: 4%; clear: none; float: right; }The sidebar should switch to the left.
Cheers!
IsmaelHi Ralf!
Thank you for using Enfold.
I’m sorry but the theme options translation is disabled because it breaks the options. If you want to translate the front end, you can use this plugin: https://wordpress.org/plugins/loco-translate/
Regards,
IsmaelHey!
The current font doesn’t support font weight of 500. Try to use 400:
#top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3 { font-family: 'Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif; font-weight: 400; }Cheers!
IsmaelHey Wils1234!
Thank you for using Enfold.
You can use the Enfold Latest News widget or generate the magazine shortcode then copy it on a text widget.
Best regards,
IsmaelHi thecszone!
Thank you for using Enfold.
I want to check the page but it gives me a forbidden 404 error. Please make sure that you’re running Enfold 3.1.5 on WordPress 4.2.2.
Cheers!
IsmaelHi!
You can use an actual icon image instead of the default icon font. After you add the custom css class attribute, use it again in the Quick CSS field. For instagram, you can try this:
.icon-instagram [data-av_icon]::before { content: url(ICON IMAGE URL HERE); }http://www.w3schools.com/cssref/tryit.asp?filename=trycss_content_url
Regards,
IsmaelMay 30, 2015 at 7:26 am in reply to: WPML language switcher on the menu with several different menus ? #451926Hey!
I checked both pages and the flags display on both of them. Please remove browser cache then reload the page.
Regards,
IsmaelHey!
There is not default option to show the language tag but you can adjust it using css. For example, to change the dutch and english language flags, use this in the Quick CSS field:
.language_de .language_flag:before { content: 'de-DE'; } .language_en .language_flag:before { content: 'en-US'; } .avia_wpml_language_switch li .language_flag img { display: none; }The last code will hide the flags.
Cheers!
IsmaelHey mindSCOPE Staffing Software!
Thank you for using Enfold.
You can set the minimum height of the title container:
.grid-content { min-height: 68px; }And it’s better if you use the same image size on every portfolio items to keep the grid consistent.
Best regards,
IsmaelMay 30, 2015 at 7:04 am in reply to: #Anchor no longer scrolling smoothly and adding space at top of page #451912Hey!
Yeah..Sorry about that. Anyway, glad you figured out the top margin issue. Regarding the forum bug, that’s something we’re still trying to fix. It’s quite random. Just refresh the page if you encounter it again.
Regards,
IsmaelHey!
The theme has its own lightbox plugin. Why do you need the prettyPhoto plugin? I checked the page and the lightbox links are working.
Cheers!
IsmaelHey haddahardy!
Glad you solved it. If you have any question, let us know. :)
Best regards,
IsmaelHey!.
The code above is working. Assuming that this is what you want, you can find the RRP field under the Sales Price field in the product’s General panel. It will display in the product overview page and in the single product view as well.
Best regards,
IsmaelHey!
I’m talking about the column layouts (1/4, 1/2, 1/3 etc) but if you like the grid row cells, that can work as well.
Cheers!
IsmaelHi!
We created a test page and the blog pagination is working here; http://zinweb.nl/site/test-blog/page/5/
Not sure why it’s not working on that specific page. Please copy the code of the .htaccess file, we would like to check it. Post it on pastebin.com. And update the theme to 3.1.5.
Cheers!
IsmaelHey!
Thank you for the info. You’re currently using an outdated version of the theme, 3.0.4. Please update to 3.1.5. That should fix the issue.
Best regards,
IsmaelHey!
Alright. Thank you for the info. Please update this post again if a new theme patch or version is available.
Cheers!
IsmaelHey Vincent!
Thank you for using Enfold.
That is the default behavior of the mobile menu if you enable the “Hide Mobile Menu Submenu Items” setting in the Header > Mobile Menu panel. It is only recommended to hide the sub menu if the parent menu is not an actual link to any specific page.
Cheers!
IsmaelHi!
Replace the css code with this:
.avia-pricing-table-container .pricing-table-wrap:first-child .pricing-table>li:last-child { border-bottom-width: 0px !important; }Best regards,
IsmaelMay 29, 2015 at 8:10 pm in reply to: Bug with Fullwidth Sub Menu (no js errors and not open menu) #451781Hi!
Look for this code:
$(".av-sticky-submenu").each(function()Try to replace it with:
$(".av-submenu-container").each(function()Remove browser cache then reload the page. Let us know if it is working.
Best regards,
IsmaelHey akzleung!
Thank you for using Enfold.
Please post the link to the actual website., we need to inspect it. Use google inspector or firebug in order to modify the element’s styling properly. Add the css codes in the Quick CSS field.
Best regards,
IsmaelHey Hank!
Thank you for using Enfold.
I checked the page and the logo image doesn’t exist: http://www.deycapital.com/wp-content/uploads/2015/05/logo-header-site-300×90.png
This is the correct logo url: http://www.deycapital.com/wp-content/uploads/2015/05/3logo-header-site-300×138.png
Not sure why there is a “3” before the logo file name. Try to remove the logo in the media library then upload it again. And update the theme to 3.1.5.
Best regards,
IsmaelHi codecreative!
Thank you for using Enfold.
Transparent header should disabled by default on mobile. Please make sure that you’re using the latest version of the theme, 3.1.5. If you used a child theme, please make sure that you update the files inside as well.
Regards,
IsmaelHey gmmediadienste!
Thank you for using Enfold.
You can modify the helper-markup.php file inside the includes folder. Look for this code:
$attributes['itemprop'] = 'mainContentOfPage';Replace it with:
if ( is_singular('post') || is_home() ) { unset($attributes['itemprop']); } else { $attributes['itemprop'] = 'mainContentOfPage'; }Cheers!
IsmaelMay 29, 2015 at 7:11 pm in reply to: Hello, I need a help because my social network icons of my website disappeared. #451766Hey!
Please update the theme to 3.1.5. And increase the WordPress memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Cheers!
IsmaelHi!
Maybe, you should include the additional containers inside the actual header container. You can place this code somewhere inside the helper-main-menu.php file:
if(!$blank) //blank templates dont display header nor footer { //fetch the template file that holds the main menu, located in includes/helper-menu-main.php get_template_part( 'includes/helper', 'header-lower-bar' ); } ?>You have this code which is somehow, not working on firefox:
header#header { height: 185px; margin-bottom: -110px; }Cheers!
IsmaelHi!
I tried to login to the site but the login credentials above are not working. Please check.
https://kriesi.at/support/topic/avia-problems/#post-450531
http://www.solbeatbcn.com/wp-login.php
Best regards,
IsmaelHi lhuston!
Thank you for using Enfold.
Which headings specifically? Please provide a link to the actual page with the issue. You can use the Quick CSS field to add a css media query and decrease the font size of the headings on mobile devices. Something like this:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ h2 { font-size: 28px; } }Cheers!
Ismael -
AuthorPosts
