Forum Replies Created
-
AuthorPosts
-
Hi!
Can you please provide a link to the website? We would like to check it. Make sure that you have the latest version of the theme running on wp 4.2.2.
Best regards,
IsmaelMay 20, 2015 at 3:18 am in reply to: How do I hide the enfold.css reference to make the theme look personal to my client #446873Hi!
If you want to change the name of the enfold.css file to something else, you need to rename the theme in the style.css file but it will deactivate the theme and you will lose the theme options. And reset all layout options on each page. You should have done this at the very start.
Theme Name: Enfold
Or rename the child theme to something else then toggle any theme options to resave the css file. Create a backup of the site and a restore point before doing anything.
The code above (https://kriesi.at/support/topic/how-do-i-hide-the-enfold-css-reference-to-make-the-theme-look-personal-to-my-client/#post-446873) should remove the debug info inside the head tag.
Regards,
IsmaelMay 20, 2015 at 3:05 am in reply to: URGENT – Theme causing WooCommerce product not to display #446869Hey!
I’m sorry if this issue is getting a bit too long to resolve. If possible, please give us the ftp credentials so that we can debug the issue further. Is the product category hierarchy in the breadcrumb important to you? If not, you can add this in the functions.php file to hide it:
remove_filter('avia_breadcrumbs_trail','avia_woocommerce_breadcrumb', 10);
The code should fix the issue as well.
Cheers!
IsmaelHey kathrynmichaud!
Thank you for using Enfold.
Add the [nolink] tag in the copyright field.
Cheers!
IsmaelHey!
Add this in the Quick CSS field:
.html_header_transparency .avia-blank #main { background: transparent; } .avia-blank .container_wrap.fullsize { background: transparent; border: 0 !important; } .avia-blank #wrap_all #main .container { background: #fff; }
Best regards,
IsmaelMay 19, 2015 at 4:42 am in reply to: Remove that overlay when linking a picture…and responsive questions. #446194Hi MMA_Impact!
Thank you for using Enfold.
1.) Which slider are you trying to use? Try to add this in the Quick CSS field:
.image-overlay { display: none !important; }
2.) We need to see actual page in order to see the issue.
3.) Go to Enfold > Header > Mobile Menu panel. Adjust the Header Mobile Menu activation settings.
Best regards,
IsmaelHi!
We created an example for you here, check the hover layer: http://alextomaszewski.com/wp-admin/admin.php?page=layerslider&action=edit&id=24
This is preview: http://alextomaszewski.com/test-2/
And the code in the Quick CSS field to create the hover effect:
.menu-item-1 { width: 241px; height: 106px; background-image: url('http://alextomaszewski.com/wp-content/uploads/2015/05/Hyperlink-Film-Portfolio-White.png'); } .menu-item-1:hover { background-image: url('http://alextomaszewski.com/wp-content/uploads/2015/05/Hyperlink-Film-Portfolio-Blue.png'); }
Of course, you remove the transition and adjust the position of the menu item.
Best regards,
IsmaelHi!
Thank you for using Enfold.
Please try to deactivate all plugins then check the site again. The session_start issue is temporary. Try to wait a few hours and it should go away automatically. Refer to these links for more info:
https://kriesi.at/support/topic/error-when-using-the-www-prefix/#post-297300
https://kriesi.at/support/topic/big-issues-setting-up-a-complete-new-site-with-enfold/
https://kriesi.at/support/topic/error-issues-with-masonry_entries-php-on-line-33/#post-271660Regards,
IsmaelHi!
The error above is temporary. It will get fixed automatically. Are you having trouble creating pages? Refer to this link for more info: https://kriesi.at/support/topic/warning-session_start-function-session-start-help-asap-please/#post-352964
Regards,
IsmaelHi TracyLove!
Thank you for using Enfold.
Edit the cells inside the grid element. Adjust the Cell Padding settings.
Best regards,
IsmaelHi MattNat!
Thank you for using Enfold.
For safari, you can use the .avia-safari selector and .avia-msie for internet explorer. What’s the purpose of the code?
Best regards,
IsmaelHi!
The color sections should be wrap inside the wrap_all container. It’s not the case in your installation. Did you add any html tags inside the page? Please make sure that all tags are closed properly. Or deactivate any plugins that render additional containers inside the page, popup plugins for example. There maybe an extra div which breaks the site layout.
Cheers!
IsmaelHey mediasauce!
Thank you for using Enfold.
Add this in the Quick CSS field to remove the captions on mobile:
@media only screen and (max-width: 767px) { figcaption.av-inner-masonry-content.site-background { display: none; }}
Cheers!
IsmaelHey!
Add this in the functions.php file:
add_action( 'ava_after_main_title', 'ava_archive_title_mod'); function ava_archive_title_mod() { if(is_category()) { echo avia_title(array('title' => avia_which_archive(), 'breadcrumb' => false)); } }
Remove browser cache then reload the page.
Regards,
IsmaelHey hasbeat!
Thank you for using Enfold.
Please give us a link to the website. Are you trying to center the logo horizontally or vertically? You can adjust the Menu and Logo Position inside the Header options panel.
Regards,
IsmaelHey!
Thank you for using Enfold.
Please provide a link to the page with the title, we would like to check it. Try to remove browser cache then reload the page as suggested above.
Regards,
IsmaelHi WolfvanHaeren!
Thank you for using Enfold.
Please add this in the functions.php file to limit the number of posts for each post type to 3:
add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1); function avf_modify_ajax_search_query($search_parameters) { parse_str($search_parameters, $params); $params['numberposts'] = 3; $search_parameters = http_build_query($params); return $search_parameters; }
You can adjust the numberposts value if you want.
Cheers!
IsmaelHi!
Replace this code:
/*Custom Padding table points*/ .cfg-pointtable{ margin-left: 0px !important; padding: 0px 0 !important; }
with this:
.cfg-pointtable li { margin-left: 0; padding: 0px 0; }
Cheers!
IsmaelHi!
Use this in the Quick CSS field to change the product title color:
.products .product h3, .products .product h4, .products .product h5, .products .product h6 { color: red !important; }
Cheers!
IsmaelHi!
Create two sections with the same content. On the other section, the section for mobile devices, always add the image column before the text content. Use css media queries to show or hide a specific section. Or add another media query like the one above. Adjust the screen width to 480:
@media only screen and (max-width: 480px) { .flex_column.av_two_fifth.avia-builder-el-12.el_after_av_three_fifth.avia-builder-el-last { position: relative; top: -50px; padding-top: 120px; } .flex_column.av_three_fifth.first.avia-builder-el-9.el_after_av_hr.el_before_av_two_fifth { padding-top: 175px; } .avia-image-container.avia_animated_image.avia_animate_when_almost_visible.right-to-left.av-styling-.avia-builder-el-27.avia-builder-el-no-sibling.avia-align-center.avia_start_animation.avia_start_delayed_animation { position: relative; top: -370px; } .flex_column.av_three_fifth.first.avia-builder-el-23.el_after_av_hr.el_before_av_two_fifth { top: 200px; }}
Adjust the top position and top padding values.
Cheers!
IsmaelHi!
There is a cache plugin installed. Try to purge the cache or disable the cache plugin then check it again. Make sure that you have the latest version 3.1.5.
Best regards,
IsmaelHi!
The lightbox use the Large thumbnail size in Settings > Media panel. Set the max width and height to 9999. Regenerate the thumbnails after.
Regards,
IsmaelHi!
Please update the the theme to 3.1.5. That should fix the issue. Increase the wp memory limit as well: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Best regards,
IsmaelMay 19, 2015 at 2:49 am in reply to: URGENT – Theme causing WooCommerce product not to display #446153Hey!
Try to activate the breadcrumbs then check these products. There is an internal server error when I checked these:
http://lysetremblayjewelry.ca/shop/afghan-garnet-bracelet-ly13-021b
http://lysetremblayjewelry.ca/shop/afghan-garnet-bracelet-ly13-022bThis one works OK, breadcrumb is activated:
http://lysetremblayjewelry.ca/shop/black-onyx-and-smoky-quartz-bracelet-ly14-010b
Please contact your hosting provider. This is a sample of the error:
http://lysetremblayjewelry.ca/shop/lapis-lazuli-earrings-ly13-020e Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Cheers!
IsmaelHey!
That is a related post. Please check your own screenshot. You got two posts with the same featured image:
Mindfulness i kampen mod alzheimers
Lær på 1 minut: Styrk din produktivitet med 30%Cheers!
IsmaelHi!
Add this:
.html_header_top.html_bottom_nav_header .header-scrolled .main_menu ul:first-child { height: 27px; } .html_header_top .header-scrolled .main_menu ul:first-child > li a { height: 27px; line-height: 27px; }
Regards,
IsmaelMay 18, 2015 at 5:24 pm in reply to: Please share with me blog demo logo badget mockup psd file #445875Hi Alperito!
Thank you for using Enfold.
Not sure if that logo is free. Try to create your own logo here:
http://logotypemaker.com/logo-maker
https://www.graphicsprings.com/start-your-logoBest regards,
Ismael -
AuthorPosts