Forum Replies Created
-
AuthorPosts
-
Hey 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=true
However, 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!
IsmaelMay 9, 2015 at 8:43 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #441918Hey!
Unfortunately, there is no workaround yet. Please hire a freelance developer if you really want to enable shortcodes on the tab title.
Best regards,
IsmaelMay 9, 2015 at 8:39 am in reply to: Move page title out of band out of the header and into the content area #441917Hey!
Can you please provide a screenshot of the layout that you want? You can replace the code with this:
add_action('ava_after_main_title', 'ava_after_main_container_mod'); function ava_after_main_container_mod() { echo "<div class'custom-title container_wrap'><div class='container'>".get_the_title()."</div></div>"; }
Use the .custom-title selector to modify the style of the custom title. Remove the post default title with this:
.single h1.post-title.entry-title { display: none; }
Cheers!
IsmaelHey GabrielAlberola!
Thank you for using Enfold.
Use the Color Section element then set the video_loop in section.php to false. Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ var video = document.getElementsByTagName('video')[0]; video.addEventListener("timeupdate", function() { if (video.currentTime >= 8) { video.pause(); console.log('paused'); }}, false); }(jQuery)); </script> <?php }
Add conditional functions if you only want to affect the video on that particular page.
Cheers!
IsmaelHey!
Like I said, it will require custom modifications on the theme. I’m sorry but you will need to hire a freelance developer to configure the script properly. Please contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelHey OneClickTech!
Thank you for using Enfold.
Use this in the Quick CSS Field:
#top .variations td.label, #top .variations td:nth-child(2) { width: 100%; display: block; }
Best regards,
Ismael -
AuthorPosts