Forum Replies Created
-
AuthorPosts
-
Hey!
Add this inside the media query:
#socket .sub_menu_socket li { line-height: 1.5em; font-size: 11px; }Best regards,
IsmaelHi!
Did you remove the css modification in the base.css file? Please add all css modifications in the Quick CSS field or the custom.css file.
Cheers!
IsmaelHi OneClickTech!
Thank you for using Enfold.
Looks like you managed to increase the width of the image container:
.single-product-main-image { width: 50%; }Best regards,
IsmaelHey Fernando!
Thank you for using Enfold.
Install the User Role Editor plugin then enable the “manage_options” capability for the Editor role.
Cheers!
IsmaelMay 11, 2015 at 9:16 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #442282Hey!
Please give us access to the database and ftp so that we can check what changes when 3.1.5 is activated.
Best regards,
IsmaelHi!
You can edit loop-index.php, add this code somewhere in the template:
//show related posts based on tags if there are any get_template_part( 'includes/related-posts');You might need to edit related-posts.php, look for this code:
wp_reset_query();Replace it with:
if(is_singular()) wp_reset_query();Regards,
IsmaelHey!
Yes, it’s possible. You need to modify the default-template.php inside the config-events-calendar > views folder. Add the get_sidebar function.
Cheers!
IsmaelHey AREA10STUDIO!
Thank you for using Enfold.
You need to select the template that you want to use manually.
Regards,
IsmaelHi Munford!
Thank you for using Enfold.
Please try the modification provided here: https://kriesi.at/support/topic/disable-dates-showing-in-magazine/#post-441877
Unfortunately, you can’t add it on a child theme.
Best regards,
IsmaelHi!
It should automatically open the video on lightbox. Make sure that the youtube url format looks like this: http://www.youtube.com/watch?v=G0k3kHtyoqc
Regards,
IsmaelHi!
Can you please provide the custom template code on pastebin.com? We would like to check it. This is the code needed in order to check if the page is password protected: https://codex.wordpress.org/Function_Reference/post_password_required
Regards,
IsmaelHey!
You can replace the code with this in order to disable the title link:
.title_container .main-title a { pointer-events: none; }Cheers!
IsmaelHi!
I checked the site site and the phone number text is already set to #2d3f73. Please remove browser cache then reload the page. Set the phone image as background so that you can add a rollover effect using css. http://kyleschaeffer.com/development/pure-css-image-hover/
Cheers!
IsmaelHi!
The correct code is:
@media only screen and (max-width: 768px) { .avia-android #coodoshare .av-parallax, .avia-android #news .av-parallax, .avia-android #contact .av-parallax { background: none !important; }}If you want to target firefox on android devices, replace .avia-android with .avia-android.avia-mozilla.
Regards,
IsmaelHey Jan!
Thank you for using Enfold. Sorry for the delay.
I think it’s because of the grid padding.
.grid-image img { padding: 0 50px; }Use css media queries to adjust the padding on different screen sizes.
Regards,
IsmaelHi!
It’s not possible to set a custom post type such as front page so you need to do a 301 redirect via .htaccess or add this code in the functions.php file:
add_action("pre_get_posts", "custom_front_page"); function custom_front_page($wp_query){ //Ensure this filter isn't applied to the admin area if(is_admin()) { return; } if($wp_query->get('page_id') == get_option('page_on_front')): $wp_query->set('post_type', 'product'); $wp_query->set('page_id', 241); //Set properties that describe the page to reflect that //we aren't really displaying a static page $wp_query->is_page = 0; $wp_query->is_singular = 1; $wp_query->is_post_type_archive = 0; $wp_query->is_archive = 0; endif; }Replace the page_id:
$wp_query->set('page_id', 241);Cheers!
IsmaelMay 11, 2015 at 5:15 am in reply to: Änderung des General-Layouts für einzelne Seiten incl. Logo im Header #442194Hi Luxususer!
Thank you for using Enfold.
1.) You can use the color section element to create different pages with different background colors.
2.) Use this in the functions.php file if you want to add a different logo in another page:
add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if(is_page(59) ) { $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png"; } return $logo; }Adjust the page id. You can add multiple conditional functions.
Best regards,
IsmaelHi!
Thank you for using Enfold.
I’m sorry but I’m not sure if I understand the translated version of the inquiry. Can you please provide a screenshot or a link to the actual page with the issue?
Regards,
IsmaelHey!
Looks like the single quote symbols in the code are incorrect. Please check the code again. Post the login details here so that we can check it.
Best regards,
IsmaelHey!
You can try this:
#socket .sub_menu_socket { position: absolute; clear: both; text-align: center; width: 100%; top: 5px; } #socket .sub_menu_socket > div { display: inline-block; } #socket .copyright { float: none; position: absolute; text-align: center; width: 100%; bottom: -20px; } #socket { min-height: 50px; }Best regards,
IsmaelHi!
I tested your code on my installation and it works. Maybe, you just need to add a line of code to check if you’re on a particular product category:
add_action( 'woocommerce_before_shop_loop', 'add_product_count_view', 10); function add_product_count_view() { $terms = get_the_terms( $post->ID, 'product_cat'); foreach( $terms as $term ) { if(is_tax('product_cat', $term->name)) { echo 'Product Category: ' . $term->name . ' - Count: ' . $term->count; } } }Regards,
IsmaelMay 10, 2015 at 4:45 am in reply to: Table Element – Not working properly in responsive mode #442040Hi!
Ah. Yes, unfortunately, that is the default behaviour of the table when set to scroll.
Cheers!
IsmaelHey!
I checked the post page and the author, date has been removed. I think the options are working. Can you please provide a screenshot of the issue? Try to remove browser cache then reload the page: http://www.dietrichid.com/allgemein/neuerwebauftritt/
Regards,
IsmaelMay 10, 2015 at 4:28 am in reply to: Enfold theme not displaying correctly on mobile devices #442038Hey!
Looks like the site is using a CDN service from google. What happens when you purge the cache?
Cheers!
IsmaelHey!
Adding an infinite scroll functionality to the site will require custom modifications that we can’t provide here. You can use a plugin but it will not work out of the box without proper configuration. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
The closest thing to an infinite scroll is the masonry element. Set the Pagination to display the “Load More” button.
Cheers!
IsmaelHey ianloomer!
Thank you for using Enfold.
The theme lightbox can only detect certain video formats, mp4 is not included. Anyway, looks like those url point to video pages instead of the actual video file. Try to add the iframe=true parameter at the end of the url. Something like this:
http://amediapro.wistia.com/medias/2hv3pvcofh?embedType=api&videoWidth=400&iframe=trueHowever, this will open the whole page in a lightbox.
Best regards,
IsmaelHi!
I was able to reproduce the issue on the same browser version, try to add this in the Quick CSS field:
@media screen and (-webkit-min-device-pixel-ratio:0) { ::i-block-chrome,.av-masonry-entry { opacity: 1; } }Remove browser cache then reload the page. If it doesn’t work, try this:
.avia-safari .av-masonry-entry { opacity: 1; }Regards,
IsmaelHi albunch1!
Thank you for using Enfold.
Please give us a link to the actual website. A screenshot of the actual issue will help. Use imgur for the screenshot.
Regards,
IsmaelMay 10, 2015 at 4:05 am in reply to: Move page title out of band out of the header and into the content area #442030Hey!
Why not insert a special heading element inside the page? I think that’s pretty easy to do, instead of adding custom modifications to the files.
Cheers!
Ismael -
AuthorPosts
