Forum Replies Created
-
AuthorPosts
-
Hey heinrichvk!
Thank you for using Enfold.
I’m sorry but you’re using an old version of the theme. Please download the latest version, 3.1.3, from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHey!
Yeah, you’re correct. This will require custom modifications. You can edit loop-index.php file manually if you want to add a slider or an image inside a post within a certain category. Use the has_category function. https://codex.wordpress.org/Function_Reference/has_category
The code will look something like this:
if(has_category('video')) { // Video slider here } elseif(has_category('image')) { // Image slider here } else { // Else slider here }
Regards,
IsmaelApril 14, 2015 at 12:23 pm in reply to: Main Menu is Vertical on Home Page and Horizontal on Sub Pages #428159Hey!
Home page theme version is correct, 3.1.3. The weird thing is, on subpages, the version of the theme is 2.4.2: http://mccartanandcompany.com/approach/
Is there any server cache or something like that?
Best regards,
IsmaelHey!
You can try this:
div#header_main > .container .inner-container { background: red; }
Regards,
IsmaelHey DROR!
Thank you for using Enfold.
There are script errors on the console when I checked the page so maybe a third party plugin is causing the issue. Please deactivate all plugins then test it again. The gap is the sticky_placeholder container. It shouldn’t display like that by default.
Cheers!
IsmaelHi!
Is it working when you deactivate the plugin? Please post the login details here so that we can check it. Set it as a private reply.
Cheers!
IsmaelHey!
The login credentials are not working. Please check it. Follow the instructions provided in the link provided above. Add this to the functions.php file:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
Create a folder called shortcodes then place the portfolio.php file inside. Modify it.
Best regards,
IsmaelApril 14, 2015 at 12:01 pm in reply to: Ad banner on top and right side outside boxed layout #428146Hi!
I checked the page but I don’t see any widgets in the header. Did you remove it? We need to check it.
Regards,
IsmaelApril 14, 2015 at 11:42 am in reply to: Responsive problem whit the Page Title and Breadcrumbs #428140Hi!
You can try this:
@media only screen and (max-width: 767px) { .responsive .title_container .breadcrumb { width: 100%; text-align: center; } .responsive .title_container .breadcrumb > * { display: inline-block; }}
Cheers!
IsmaelHey!
I’m sorry but what do you mean by “first-menu-item”? Please provide a screenshot. I modified the code above and it seems to be working now on all pages:
add_action( 'ava_after_main_container', 'ava_after_main_container_mod', 10, 2 ); function ava_after_main_container_mod() { global $post; if(!empty($post->post_parent)) { echo '<div class="main_color container_wrap sidebar_right_mobile"><div class="container"><aside class="sidebar sidebar_right smartphones_sidebar_active alpha units" role="complementary" itemscope="itemscope" itemtype="https://schema.org/WPSideBar"><div class="inner_sidebar">'; avia_sidebar_menu(true); echo '</div></div></div>'; } }
Don’t forget to add the custom css above in the Quick CSS field.
Cheers!
IsmaelHi!
Why did you edit the script? Note that you can use the Fullwidth Easy Slider to add a non-fullscreen video slider. It is possible to set the size in the slider options.
Regards,
IsmaelHey Jameel!
Thank you for using Enfold.
This is not a default feature of the theme but there are a lot of ways to add an icon in list items. Can you please provide a screenshot of what you’re trying to do? You can try the iconlist element or use the icon shortcode.
Cheers!
IsmaelHi!
Can you please provide links to the actual pages with the issue? Screenshots will help.
Best regards,
IsmaelHey!
Thank you for the info.
Please replace it with this:
@media only screen and (min-width: 767px) { #top #main > #searchform > div { display: none; }}
Regards,
IsmaelHi!
Yes, that is possible. You can add it directly to the includes > helper-main-menu.php fileor add this to the functions.php file:
add_action('ava_main_header', 'ava_main_header_mod'); function ava_main_header_mod() { $output = '<div class="header-message">'; $output .= '<span class="blue bold">Vrijdag 17 april Open Dag!</span> <br>'; $output .= '<a href="http://www.intercollege.nl/contact/afspraak-maken/" class="orange bold">Meld je nu aan!</a>'; $output .= '</div>'; echo $output; }
Regards,
IsmaelHey Sumeru!
Thank you for using Enfold.
1.) Looks like you managed to move the captions below the image.
2.) If you want to another logo, please refer to this link: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
You can also use this filter in the functions.php file to add another logo manually:
add_filter('avf_logo_subtext', 'avf_logo_addition'); function avf_logo_addition($sub) { $sub .= "New Logo Here"; return $sub; }
Use html tags to add the logo.
Regards,
IsmaelHi!
Sorry for the delay. You should set the Responsive under and Layers container option to make the slider responsive. Please check it now. It’s a bit small in mobile version so my suggestion is to create a new slider only for mobile devices. Please refer to these links:
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/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/Regards,
IsmaelApril 14, 2015 at 10:36 am in reply to: Showing tags/tag cloud as an element inside a page/portfolio item #428108Hey DROR!
Thank you for using Enfold.
There is no default element for that but you can find tag cloud widgets in wp library. Use the Widget Area element to add it on a specific page.
Regards,
IsmaelHey!
Add this to the functions.php file:
add_action('wp_footer', 'ava_custom_script_1'); function ava_custom_script_1(){ ?> <script> (function($){ var meta = $('.slide-meta'); $(meta).each(function() { var comment = $(this).find('.slide-meta-del').prev().detach(); var date = $(this).find('.slide-meta-del').next().detach(); $(comment).appendTo(this); $(date).prependTo(this); }); })(jQuery); </script> <?php }
Regards,
IsmaelHi DROR!
Thank you for using Enfold.
I checked the page but I can’t reproduce the issue. Please try to install cache and minify plugins to optimize loading speed. That should take care of the issue.
Cheers!
IsmaelHey!
Please try to regenerate the thumbnails. You can use either of these plugins:
https://wordpress.org/plugins/simple-image-sizes/
https://wordpress.org/plugins/regenerate-thumbnails/Make sure that you switch to the “german” language when you regenerate them. If it doesn’t work, try to recreate the partner/logo element from scratch.
Best regards,
IsmaelApril 14, 2015 at 10:03 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #428088Hi!
What kind of shortcode are you trying to add inside the tab title? If it’s an icon, you can add icons directly in the tab title without the modifications above. Just edit the title then enable the Tab Icon.
Cheers!
IsmaelApril 14, 2015 at 9:54 am in reply to: Content of fullwidth easy slider sometimes not loading #428083Hi!
Alright. We’ll keep the thread open. Please update us if the issue is still happening on a specific browser.
Regards,
IsmaelHi!
The screenshot is not working when I checked it: http://thaivillagerest.cachetmedia.com/wp-content/uploads/2015/04/screener.jpg
Cheers!
IsmaelHey!
I tested this on my installation and the custom style is working in the logo. Do you really need a negative value? Where do you want to position the layer slider logo? Please provide a screenshot.
Cheers!
IsmaelHey!
It’s really kinda hard to trace back all the modifications on the child theme folder. What happens when you activate the parent theme? Or deactivate all child theme modifications by renaming the files temporarily.
Regards,
IsmaelHi Jon!
Thank you for using Enfold.
I’m sorry but you’re using an old version of the theme, 3.0.5. Please update the theme to version 3.1.3.
Regards,
IsmaelApril 13, 2015 at 7:05 am in reply to: Masonry Gallery – Images Stacking On Top Of Each Other #427316Hey!
Yes, please create a test page. Post the login details here. We would like to check it. :)
I noticed that the images are not fully optimized. Maybe, having a fully optimized gallery images will fix the issue. Let’s check this image for example: http://www.tinyillusion.com/wp-content/uploads/2014/12/Ian-Elain-793-1030×686.jpg
I was able to reduce the file size from 288KB to 140KB+, just by resaving the images using photoshop. I set the file format to jpeg and quality to 8 or 9, you think that this will lower the image quality but it doesn’t. You won’t be able to tell the difference, at least not in most cases. I’m not a photographer so maybe I don’t see it clearly. If you don’t want to do this manually, you can try this plugin: https://wordpress.org/plugins/ewww-image-optimizer/
Cheers!
IsmaelHi JustMediaGroup!
Thank you for using Enfold.
Please post the website url here. If you can’t access the theme settings then update the theme manually via FTP. Refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
Ismael -
AuthorPosts