Forum Replies Created
-
AuthorPosts
-
Hi dhuet!
Thank you for using Enfold.
You can modify the includes > loop-index.php file. Look for this code:
//echo preview image if(strpos($blog_style, 'big') !== false) { if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>'; if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>'; }Below, add something like this:
echo '<span class="blog-categories minor-slider-meta">'; echo $cats; echo '</span>';Use ths in the Quick CSS field to adjust the position of the categories:
span.blog-categories.minor-slider-meta { top: -50px; position: relative; z-index: 1000; font-size: 40px; left: 20px; }Note that this is only going to work if all posts are set to standard format.
Best regards,
IsmaelHey!
If you can provide a screenshot of what you’re trying to do, it will help. Use imgur or dropbox to post a screenshot. You can simply add the videos using the video element under the media elements panel or add the image element then set the video url as link. Again, it will open the video in a lightbox. If you want to do hard coding, use the text or code block, use the iframe tag to add the videos but I don’t think you have to do this when there are available elements that automatically add the video. Or use the easy slider.
Regards,
IsmaelJune 23, 2015 at 10:29 am in reply to: Blog Layout: Category View different to home blog Layout #463229Hey!
Yes, you need to use the “multi-big” blog style to display the author:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'multi-big'; return $layout; }Cheers!
IsmaelHey!
Please check the file permission of the wp-content folder. Make sure it is writable or set to 755. Ask your hosting provider if you’re not sure how to change it. Is it OK if we deactivate the plugins temporarily while testing the site?
Regards,
IsmaelHi StudioLeBus!
Thank you for using Enfold.
Yes, that is the default behavior of the sliders, full width easy slider specifically. You can set the thumbnail size in the Slideshow Image and Video Size settings. The “Stretch image to fit” refers to the image width inside the slider. For example, if you use an image which is 900px in width and the browser screen size is 1900px, the image will align at the center if you set the option to “don’t stretch”. Still, the height of the slider will depend on the image height.
Cheers!
IsmaelHi!
Can you give us an example of the image that is being cut off? I checked the “blog-like” section below and if I am not mistaken, it’s from a third party plugin, “srp-widget” or something. Please contact the plugin author regarding that.
Cheers!
IsmaelHi!
Please try this in the Quick CSS field:
.avia-msie img, .avia-msie a img { max-width: 100%; height: auto; width: auto; }Or this:
.avia-msie img, .avia-msie a img { max-width: 100%; height: auto; width: inherit; }Regards,
IsmaelHey!
I’m sorry but this problem with the testimonial element is quite “erratic” as Kriesi put it or random so it’s pretty difficult to find what’s causing the issue. I can’t even reproduce it on my safari browser. We will give you an update once it is fixed. Thank you for your patience.
P.S: If it really bugs you, temporarily, you can replace it with the content slider which is stable across all browsers.
Cheers!
IsmaelJune 23, 2015 at 9:48 am in reply to: After upgrade, either titles or slider not displaying with Advanced editor #463202Hi!
If you use the advance layout builder for posts, all default elements such as the featured image, title, post meta info etc. will be removed. Those elements will need to be added manually. You can start from a clean canvas enabling you to create a fully customized post page.
Best regards,
IsmaelHey!
You can use this in the Quick CSS field if you want to change the background of the menu bar:
#header_main_alternate { background-color: red; }It is also possible to apply a background image if you want.
Best regards,
IsmaelHey Rshaules!
Thank you for using Enfold.
1.) The images are resized down from 845px to 625px because of the content container width. The contents cannot exceed or overflow outside the container so they are resized via css. You can resize the thumbnails using this plugin: https://wordpress.org/plugins/simple-image-sizes/
2.) That is a theme generated thumbnails usually use for related posts and catalogue images. Note that, in a few cases, the theme has to use images twice the size of the actual container for retina displays.
Best regards,
IsmaelHey René!
Thank you for using Enfold.
Make sure that the folder or directory above is writable or have the correct file permission. Ask your server administrator regarding that. I’m not sure if this is going to help but please try to add this in the php.ini file:
ini_set('upload_tmp_dir','c:/domains/_SERVICES/PHP-sessiondata/uploaddata/iccfo.ngo/www');If possible, please give us a link to the php info page so that we can check the php settings.
Regards,
IsmaelJune 23, 2015 at 9:27 am in reply to: Fullscreen slider not showing full screen but within Container #463193Hey!
I created a test page and it works ok there. Not sure why it’s not working on the other page. Please delete that page then use this one instead: http://strategistshub.com/test-page/
Cheers!
IsmaelHi!
Where did you add the code? Please place the code in the Google Analytics field:
<script> (function($){ $(window).load(function() { $('.NyomtatoForm input[type="submit"]').on('click', function() { ga('send’, 'event', 'input', 'click', 'Nyomtato Urlap'); }); }); }); </script>Where did you get the class selector “NyomtatoForm”? Refer to this link for more info: https://developers.google.com/analytics/devguides/collection/analyticsjs/events
Regards,
IsmaelHey!
We’ll close this thread because there’s another open thread with the same issue. We’ll continue there: https://kriesi.at/support/topic/full-width-background-slider-with-plugin-make-all-content-areas-transparent/#post-463176
Regards,
IsmaelJune 23, 2015 at 8:36 am in reply to: full width background slider with plugin – make all content areas transparent? #463176Hey!
How can we login to the site? This url is not working: http://www.crestedbuttecomputers.com/dev/wp-admin
Best regards,
IsmaelHey!
Please try this:
#top .av-menu-button>a .avia-menu-text { border: none !important; }Regards,
IsmaelHi graphicsplus!
Thank you for using Enfold.
Please try this:
function add_custom_script(){ ?> <script> jQuery('.av-masonry-entry').each(function() { jQuery(this).attr('target', '_blank'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
IsmaelHey flightdisplay!
Thank you for using Enfold.
The theme doesn’t modify the tabs to any extent aside from changing its position. You can find this code in the config-woocommerce > config.php:
# # display tabs and related items within the summary wrapper # remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );Maybe that info will help them (the woocommerce support) find the issue. I’m sorry but I don’t think we can offer or provide any useful help with this issue since we didn’t develop the plugin.
Cheers!
IsmaelHey!
I removed the menu items then added it back and it seems to have fixed the issue.
http://www.asdrugtest.com/saliva-tests/
http://www.asdrugtest.com/cassettes/Cheers!
IsmaelJune 23, 2015 at 8:03 am in reply to: Warning: mysqli_real_escape_string() expects parameter 2 to be string … #463166Hey!
Maybe, we can hide the warnings. Please try to edit wp-config.php, look for this code:
define('WP_DEBUG', false);..replace it with:
ini_set('log_errors','On'); ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);Best regards,
IsmaelHey!
The login credentials are really not working. Did you test it yourself? When I try to login, I got this:
ERREUR: Nom d’utilisateur ou mot de passe incorrect.
1 tentative restante.Maybe, because of the complicated password. Please try to create another admin user. Yes, please disable the cache plugin. I checked the link again, the errors are gone.. Did you deactivate WPML again?
http://www.imarklab.dreamhosters.com/categories/technologie/
Cheers!
IsmaelHi!
The login credentials are not working. Please check it carefully. I tried to login here: http://www.imarklab.dreamhosters.com/wp-admin/
I also test the site using FTP but the changes I made are not affecting the site. Is the installation folder named “imarklab.com”?
Cheers!
IsmaelJune 22, 2015 at 1:25 pm in reply to: Fullscreen slider not showing full screen but within Container #462730Hi!
Alright. Please give us the login details so that we can check it. Set it as a private reply. I checked the site again and it looks full width now.
Best regards,
IsmaelHi!
What is the code for? If you’re trying to add a bottom margin, use this:
.avia-icon-list li { margin-bottom: 5px; }Cheers!
IsmaelHi!
Please provide a screenshot of the issue and copy the css modifications related to the hotspot element on pastebin.com so that we can test it on our installation.
Regards,
IsmaelHi welti!
Thank you for using Enfold.
You don’t have the latest version of the theme which is not compatible with the current version of WordPress. Please update the theme to version 3.2.1.
Regards,
IsmaelHey!
Thank you for using Enfold.
Please use the advance layout builder if you want to add the layer slider. If I am not mistaken, you’re using the layer slider shortcode in the default editor.
Regards,
IsmaelHi!
Can you please provide a screenshot of the issue? Use imgur or dropbox.
Best regards,
IsmaelJune 22, 2015 at 12:55 pm in reply to: full width background slider with plugin – make all content areas transparent? #462695 -
AuthorPosts
