Forum Replies Created
-
AuthorPosts
-
Hey Marc,
Please, I`ve checked your site and the wp-admin page is not found. May you check it?
Best regards,
John TorvikHi,
Add this Quick CSS:
.menu-item-top-level menu-item-top-level-6 a { color: #fff !important;
let me know if this helped!
Best regards,
John TorvikHi,
You can use this plugin https://wordpress.org/plugins/wordpress-reset/ to reset all database and after it, you`ll start fresh.
Best regards,
John TorvikHi,
To fix your problem, just add this custom CSS code:
@media screen and (max-width: 480px) { .av-rotator-container-inner { font-size: 20px !important; } }
Best regards,
John TorvikMarch 22, 2017 at 4:36 am in reply to: Switch betweeen Advanced Layout Builder and standar editor in custom post types #764513Hi,
No problem buddy!
Let us know if you have any other questions or issues :)
Best regards,
John TorvikHi,
Thanks for the info.
To fix your problem, just add this Quick CSS code:
.html_bottom_nav_header .cart_dropdown { z-index:10000; margin: -20px 0 0 0;
Best regards,
John TorvikHi,
I am sorry, but I forgot to ask your website link too. May you share with me?
Best regards,
John TorvikHey cptnem0,
Please, may you share your WP credentials with me?
Best regards,
John TorvikMarch 22, 2017 at 4:26 am in reply to: How to change color of arrow that brings website to top #764509Hey Wisith,
To change the color, you need to add the custom CSS code below at Enfold Theme Options > General Styling > Quick CSS
.avia-post-nav { background-color: red; }
Best regards,
John TorvikHey Gina Pietro Besaggio,
You can see the available Enfold demos here: http://kriesi.at/themes/enfold-overview/ – and please, I don`t know speak Italian, if you write to me in English will be better.
Best regards,
John TorvikHey mirtao64,
The last version is the 4.0.3 and you can download it from themeforest and the .zip will have the same name, just replace the folder.
This tutorial should help you: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
Best regards,
John TorvikMarch 22, 2017 at 12:42 am in reply to: Prevent Easy Slider Video From Playing Automatically #764476Hey Nathan,
You can check if you enable this option on your shortcode: http://prntscr.com/emve51
Let me know if this helps!
Best regards,
John TorvikMarch 21, 2017 at 6:18 am in reply to: Blog – how to display author comments date etc under blog title? #764000Hi,
Thanks for the credentials :)
I`ve checked your blog options and to fix it, I just changed the blog style to Default (Bussiness) at Enfold Theme Options > Blog Layout.
Now, your blog has the meta under the title :)
Best regards,
John TorvikMarch 21, 2017 at 6:10 am in reply to: Secondary Menu right of the Logo – Space above Header #763993Hey Neverlands,
To fix your problem, just add the custom CSS code below at Enfold Theme Options > General Styling > Quick CSS
.header_meta { height: 6px; background: #fff; }
Let me know if it worked :)
Best regards,
John TorvikHey jtuselton,
You can enable the “Hide mobile menu submenu items” at Enfold Theme Options > Header > Mobile Menu tab.
Let me know if it worked :)
Best regards,
John TorvikMarch 21, 2017 at 4:15 am in reply to: How to correct formatting issues w Blog Posts content element #763956Hey galpinr,
Did you edit some theme files?
Best regards,
John TorvikHey KingFilly,
Please, may you share with me your WP credentials, this way, I can check your situation and learn to you how to reproduce it with a step by step.
Best regards,
John TorvikMarch 21, 2017 at 4:08 am in reply to: Switch betweeen Advanced Layout Builder and standar editor in custom post types #763953Hey aledef,
Please, may you share with me your WP credentials?
Best regards,
John TorvikHey envatotastic9,
Please, may you share with me your WP credentials?
Best regards,
John TorvikHey Nathan,
To have the same size, you need to upload the second image with these dimensions: 363px X 334px – You can use photo editors like the Photoshop to do it.
If you don`t want to do it, you can add this custom CSS code:
.avia-builder-el-36 .avia_image { width: 363px; height: 334px;
Let me know if it worked :)
Best regards,
John TorvikHey Christina,
Apologies for the late response.
Before of all, is necessary that you install and use the Theme Child to avoid further problems. So, if you aren`t using it, check this tutorial: http://kriesi.at/documentation/enfold/using-a-child-theme/
Now, you need to add this custom code in the functions.php at the Enfold Child:
function custom_nav_hooks() { remove_action( '<a href='https://woocommerce.com/?ref=84' target='_blank' rel="nofollow">woocommerce</a>_after_shop_loop', 'avia_<a href='https://woocommerce.com/?ref=84' target='_blank' rel="nofollow">woocommerce</a>_after_shop_loop', 10); add_action( '<a href='https://woocommerce.com/?ref=84' target='_blank' rel="nofollow">woocommerce</a>_after_shop_loop', 'custom_avia_<a href='https://woocommerce.com/?ref=84' target='_blank' rel="nofollow">woocommerce</a>_after_shop_loop', 20); } add_action('wp_head', 'custom_nav_hooks', 1000); function custom_avia_<a href='https://woocommerce.com/?ref=84' target='_blank' rel="nofollow">woocommerce</a>_after_shop_loop() { global $avia_config; if(isset($avia_config['dynamic_template'])) return; if(isset($avia_config['overview'] )) { echo nav_prev_avia_pagination('', 'nav'); } echo "</div></main>"; //end content } /** * Displays a page pagination if more posts are available than can be displayed on one page * @param string $pages pass the number of pages instead of letting the script check the gobal paged var * @return string $output returns the pagination html code */ function nav_prev_avia_pagination($pages = '', $wrapper = 'div') //pages is either the already calculated number of pages or the wp_query object { global $paged, $wp_query; if(is_object($pages)) { $use_query = $pages; $pages = ""; } else { $use_query = $wp_query; } if(get_query_var('paged')) { $paged = get_query_var('paged'); } elseif(get_query_var('page')) { $paged = get_query_var('page'); } else { $paged = 1; } $output = ""; $prev = $paged - 1; $next = $paged + 1; $range = 1; // only edit this if you want to show more page-links $showitems = ($range)+1; if($pages == '') //if the default pages are used { //$pages = ceil(wp_count_posts($post_type)->publish / $per_page); $pages = $use_query->max_num_pages; if(!$pages) { $pages = 1; } //factor in pagination if( isset($use_query->query) && !empty($use_query->query['offset']) && $pages > 1 ) { $offset_origin = $use_query->query['offset'] - ($use_query->query['posts_per_page'] * ( $paged - 1 ) ); $real_posts = $use_query->found_posts - $offset_origin; $pages = ceil( $real_posts / $use_query->query['posts_per_page']); } } $method = "get_pagenum_link"; if(is_single()) { $method = "avia_post_pagination_link"; } if(1 != $pages) { $output .= "<$wrapper class='pagination'>"; $output .= "<span class='pagination-meta'>".sprintf(__("Page %d of %d", 'avia_framework'), $paged, $pages)."</span>"; $output .= ($paged > 2 && $paged > $range+1 && $showitems < $pages)? "<a href='".$method(1)."'>«</a>":""; $output .= ($paged > 1 && $showitems < $pages)? "<a href='".$method($prev)."'>‹</a>":""; for ($i=1; $i <= $pages; $i++) { if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems )) { $output .= ($paged == $i)? "<span class='current'>".$i."</span>":"<a href='".$method($i)."' class='inactive' >".$i."</a>"; } } $output .= ($paged < $pages && $showitems < $pages) ? "<a href='".$method($next)."'>›</a>" :""; $output .= ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) ? "<a href='".$method($pages)."'>»</a>":""; $output .= "</$wrapper>\n"; } return $output; }
So, if you check this part of the code: http://prntscr.com/elrto1 – you need to understand that the arrows depend on the quantity page, with this code, the arrows will appear with 2 pages ($range = 1) and ($shoitems = ($range)+ 1). – So, if you want that the arrows appear with 3 pages, you need to replace the $range = 1 by $range = 2.
Let me know if it works :)
Best regards,
John TorvikHey ohelayalah,
Please, may you share with me your WP credentials?
Best regards,
John TorvikHey James2200,
To help you better, may you share with me your WP credentials in the private content, please?
Best regards,
John TorvikHey RokRB,
Please, to help you better, may you share with me your WP credentials in the private content?
Best regards,
John TorvikHey rlhinirv57,
I`ve tried to access your dashboard, but the credentials are wrong. May you check it, please?
Best regards,
John TorvikHey storhouse,
To fix it, just replace the z-index: 2 by z-index: 10000; like this:
#after_layer_slider_1 { z-index: 10000; }
Let me know if it worked :)
Best regards,
John TorvikHey tripperwood,
Please, may you share your WP credentials in a private content?
Best regards,
John TorvikHey aboutnina,
You need to enable the custom CSS class in the Advanced Builder following this article: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
After it, you need to add a custom class to your testimonial shortcode and use these custom CSS code:
/* These rules will change the title */ .YourCustomClass .avia-testimonial-name { font-size: 15px; } /* These rules will change the subtitles */ .YourCustomClass .avia-testimonial-subtitle { font-size: 12px; }
Let me know if it worked :)
Best regards,
John TorvikMarch 20, 2017 at 11:12 pm in reply to: Sidebar: How to change the size/width or the font size? #763874Hey aboutnina,
To fix it, just add this custom CSS code at Enfold theme options > general styling > Quick CSS
.inner_sidebar { margin-left: 26px; }
Let me know if it worked :)
Best regards,
John TorvikMarch 20, 2017 at 10:59 pm in reply to: Portfolio entry empty after update in default editor mode #763865Hey tomerdelyi,
To see the Advanced Builder content in the default editor, you need to enable the debug mode to see all the shortcodes. Follow this article to learn how to do it: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Let me know if it works :)
Best regards,
John Torvik -
AuthorPosts