Forum Replies Created
-
AuthorPosts
-
Hi hdpcr!
Thank you for using Enfold.
After the demo data import, you can find the page in the Pages panel. Anyway, it’s quite easy to create the coming soon page manually. Create a new page then set the Template to Blank. Add the contents. Set the page as frontpage on Enfold > Theme Options.
Cheers!
IsmaelHi!
You can modify the mouse over transition on js > avia.js, look for this code around line 1202:
sublist.stop().css({visibility:'visible'}).animate({opacity:1}, 5000);
Adjust animate duration:
sublist.stop().css({visibility:'visible'}).animate({opacity:1});
For the mouseleave event, edit the code below:
sublist.stop().animate({opacity:0}, 5000, function()
Replace it with:
sublist.stop().animate({opacity:0}, function()
Adjust the value as you please.
Cheers!
IsmaelHey!
Please revert the portfolio.php file back to default then do the suggested modification above. You have to remove this line of code:
$target = !empty($custom_link) ? "target='_blank'" : ''; $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
Regards,
IsmaelHi!
Alright. You can hide specific elements of the product page using css. Give us a screenshot of the product layout that you have in mind, we’ll give you some css snippets. For further modifications, please contact the WooCommerce support or hire a freelance developer. You can find one on codeable: http://kriesi.at/contact/customization
And just so you know, you can use the magazine element or blogs posts element to showcase your products without the default product elements like add to cart, price etc. If you want to remove certain elements in the single product page view, like I said, we can use css to hide those elements.
Best regards,
IsmaelHi!
Please post the login details here, we would like to check it. Make sure that you’re running Enfold 3.2.
Best regards,
IsmaelHey!
Try to set the header height on Enfold > Header > Header Size. Set it to custom pixel value then adjust the Header Custom Height value.
Cheers!
IsmaelHey!
Ok. Let us know if it works. You might see the result after a few days. I’m really not sure how they test if this is working though.
Cheers!
IsmaelHey!
Alright. Please post the website url here, we would like to check it. Also, place the css mod here so that we can test it on our installation.
Best regards,
IsmaelHi!
Just to be clear, you want to open the link in another tab or window? Please remove the modifications above, then look for this code:
if(!empty($title_link)) { $output .= "<a href='{$title_link}'>".$title."</a>"; }
Replace it with:
if(!empty($title_link)) { $output .= "<a href='{$title_link}' target='_blank'>".$title."</a>"; }
Regards,
IsmaelJune 7, 2015 at 7:55 am in reply to: [Woocommerce] How to move image product from sidebar to product summary ? #455590Hi!
Add this in the functions.php file:
# # removes the default post image from shop overview pages and replaces it with this image # function avia_woocommerce_thumbnail_mod($asdf) { global $product, $avia_config; $rating = $product->get_rating_html(); //get rating $id = get_the_ID(); $size = 'shop_catalog'; echo "<div class='thumbnail_container'>"; echo avia_woocommerce_gallery_first_thumbnail( $id , $size); echo get_the_post_thumbnail( $id , $size ); if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>"; if($product->product_type == 'simple') echo "<span class='cart-loading'></span>"; echo "</div>"; } add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_thumbnail_mod' ); remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); remove_action( 'woocommerce_before_shop_loop_item_title', 'avia_woocommerce_thumbnail', 20);
Cheers!
IsmaelJune 7, 2015 at 7:06 am in reply to: Mega Menu Parent link does not work in responsive view? #455586Hey mailworm!
Thank you for using Enfold.
Looks like you use a shortcode in the menu description? I’m sorry but that’s not going to work on mobile devices. Please use the default mega menu options. Make sure that the Header > Mobile Menu > Hide Mobile Menu Submenu Items option is deactivated.
Cheers!
IsmaelJune 7, 2015 at 7:00 am in reply to: Wide Header does not work with Transparent Header setting #455585Hey!
It works fine on our installation. We set the header height to large, on default header, height is 116px. If we switch to transparent header, height is still 116px. We are using the default enfold logo and logo / menu position is set to “logo left, menu right”. Make sure that you don’t have any css modifications related to the header.
Regards,
IsmaelHi!
You can create a background image specifically for mobile device then set it in the Quick CSS field:
@media only screen and (max-width: 767px) { .header_color .header_bg { background: #f1f1f1 url(//lindenmobileappstore.nl/ERI/wp-content/uploads/2015/06/new-header-image-here.jpg) top left no-repeat fixed !important; }}
Adjust the image url. Or much better, IMO, hide it on mobile devices:
@media only screen and (max-width: 767px) { .header_color .header_bg { background: none !important; }}
Regards,
IsmaelJune 7, 2015 at 6:52 am in reply to: Need only one of my webpages not show up as a menu item on my website #455583Hi!
I’m sorry but I think you misunderstood the concept of the theme location. After creating the menu and setting it as Enfold Child Main Menu, did you add the menu items or pages again? If a theme location is not set, WP will automatically add newly created pages in the main menu. This is your problem at first so in order to fix that, you have to create a menu on Appearance > Menus panel then set it as Enfold Main Menu. This will give you control which menu items to display in the main menu. You have to add the pages or menu items manually. Please refer to this link for more info: https://codex.wordpress.org/WordPress_Menu_User_Guide
Regards,
IsmaelHi Technoh!
Thank you for using Enfold.
What do you mean by transition? Are you trying to change the hover effect? A screenshot will help.
Cheers!
IsmaelHi!
That is the top position of the logo image, not padding. Yes, a transparent space on the actual image could work. Let us know if you figure it out.
Regards,
IsmaelHi!
If you want the 3rd and 4th columns to float side by side on smaller screens, you can use this in the Quick CSS field:
@media only screen and (max-width: 767px) { #footer .flex_column:nth-child(3), #footer .flex_column:nth-child(4) { width: 48% !important; float: left; }}
You can also use the nth child selector to adjust the width of the second column on desktop view. Use css media queries.
Cheers!
IsmaelJune 7, 2015 at 6:35 am in reply to: Is Quick CSS overwritten on upgrading? Best location for @font-face fonts? #455579Hey Fionadee!
Thank you for using Enfold.
The Quick CSS field will not be overwritten when you update the theme but if you want a bullet proof update, use a child theme then add the css modifications in the style.css file. Creating a backup won’t hurt either.
Cheers!
IsmaelHey!
You can do something like this:
#header:after { content: ''; background-color: red; width: 5px; height: 100%; display: block; position: absolute; top: 0; right: 0; }
Add the alternating color background as background image. Use css media queries to adjust the background on smaller screens.
Cheers!
IsmaelHey Ballabird!
Thank you for using Enfold.
The site is still using 3.0.4 when I visit the site. Please update to version 3.2 then we’ll check it again. Please contact the plugin author for more info regarding the issue.
Best regards,
IsmaelHi!
Please use this code instead:
add_filter( 'avf_datepicker_dateformat', function(){ return 'mm / dd / yy'; } ); add_filter( 'avf_datepicker_date_placeholder', function(){ return 'MM / DD / YY'; } );
Best regards,
IsmaelHey alexmasica!
Thank you for using Enfold.
There is no option for that yet but you can use css media queries to hide or show an element on different screen sizes. Please refer to these links for more info:
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/
https://kriesi.at/support/topic/home-page-video-on-mobile-phone/#post-449787
Turn on the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Cheers!
IsmaelHey!
Remove this line:
if(!empty($title_link)) { $output .= "<a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a>"; } else { $output .= "".$title.""; }
Best regards,
IsmaelHi scotthco!
Thank you for using Enfold.
Use the fullwidth submenu element to replace the default sidebar menu on mobile device. Edit the element then set the Mobile Menu Display to the second option. Use css media queries to show or hide the menus.
Cheers!
IsmaelHey mndawood!
Thank you for using Enfold.
I’m sorry but you can’t add the modification in the child theme. The feature is in beta test and might be added on future updates. You can vote or request the feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelJune 6, 2015 at 1:19 pm in reply to: Mega Menu shows different color links on different pages #455480Hey ablando!
Thank you for using Enfold.
Did you set this pages as child page of another page? Add this to the Quick CSS field to change the link color:
#top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item > a { color: #808080; }
Cheers!
IsmaelHey!
You enabled the social icons on mobile. Please provide a screenshot of your expected header layout on smaller screens. Use imgur or dropbox. We will provide the css after.
Regards,
IsmaelJune 6, 2015 at 1:13 pm in reply to: Avia editor is blank — already tried clearing cache in browser and on website #455477Hi!
@abskevin: Based on the video, it looks like you’re expecting to see the content of the default editor in the advance layout builder. I’m sorry but the two editor contains different content. You can’t switch between the two. You need to recreate the content of the default editor in the advance layout builder vice versa.
@ckerr44: Try to deactivate all plugins or shift + refresh (hard refresh) the page.Cheers!
Ismael -
AuthorPosts