Forum Replies Created
-
AuthorPosts
-
Hey missholst,
Please, may you share your website link that you`re referring in the question?
Best regards,
John TorvikHey nini_bacher,
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste the shortcode into any other content element or into the text widget.
Best regards,
John TorvikHey oehsg,
If you check the Chrome console, you`ll these issues: http://prntscr.com/emecea – to fix it you need to add the below code at your .htaccess
<FilesMatch “\.(ttf|otf|woff)$”> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin “*” </IfModule> </FilesMatch>
Let me know if it works :)
Best regards,
John TorvikHi,
Let us know if you have any other questions or issues :)
Best regards,
John TorvikHey shreinmedia,
Please deactivate all plugins but WooCommerce by WooThemes one by one to check which one is causing this issue and let us know if this solves the problem.
Best regards,
John TorvikHey bethperkins,
May you share with me your WP credentials in the private content to me check better?
Best regards,
John TorvikHey artisforever,
You can increase the column width adding this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.avia-builder-el-16 { margin-left: 0%; width: 20%; }
This code will change the width of this column: http://prntscr.com/emclqy
Let me know if it works :)
Best regards,
John TorvikMarch 20, 2017 at 8:16 pm in reply to: Events Calendar ProSidebar Disappears on upgrade – Enfold 3.1.5 to Enfold 4.0.2 #763763Hi,
You can copy the “config-calendar” and paste in your theme child with this file edited, this way, you won`t do it every time that the enfold is updated :)
Best regards,
John TorvikHey Peter,
You`re using the font weight 600 and to have a bolder font, you need to use the 700. Add this custom CSS code to change this:
.avia_mega a { font-weight: 700 !important; }
Let me know if it works :)
Best regards,
John TorvikHi,
This problem is caused by your images, I`ll explain why:
1- Pay attention to the title of your first image: http://prntscr.com/emc87q – the pink square is the “padding-top” that your image has.
2 – Now, you`ll find the problem comparing the “padding-top” of the first with the second image: http://prntscr.com/emc9km
To fix it, you need to correct this white space in the images.
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( 'woocommerce_after_shop_loop', 'avia_woocommerce_after_shop_loop', 10); add_action( 'woocommerce_after_shop_loop', 'custom_avia_woocommerce_after_shop_loop', 20); } add_action('wp_head', 'custom_nav_hooks', 1000); function custom_avia_woocommerce_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 TorvikMarch 19, 2017 at 7:26 am in reply to: Slideshow not responsive – showing black with tiny cut off image on iPhone #763104Hey dominiquehurley,
Please, may you share with me some screenshots to me check better?
Best regards,
John TorvikHey jancecile,
I can answer your question just when the WooCommerce 3.0 for release and the Woo team found a bug in the new version, so, this version will be release April 4th.
Best regards,
John TorvikMarch 19, 2017 at 6:34 am in reply to: Register Permanent Marker As An Additional Google Fonts for Theme Options #763078Hi,
The credentials are not correct. May you check it, please?
Best regards,
John TorvikHey Nathan,
Please, may you share with me your website link that this problem is occurring?
Best regards,
John TorvikHi,
Yes, it`s the plugin :)
Best regards,
John TorvikHi,
If you aren
t using a custom CSS code, you
ll need to create an exclusive class to apply a custom media query code at Enfold Theme Options > General Styling > Quick CSS.Follow a complete explication:
If I create a tag with some styles value like this:
text hereI`ll need to apply a custom class on this tag, like this:
text hereNow, I`ll need to add a custom code to edit this padding just in the mobile:
@media only screen and (max-width: 767px) { .my-padding-p { padding-left: 0px; } }
let me know if it help you :)
Best regards,
John Torvik- This reply was modified 7 years, 8 months ago by John Torvik.
Hi,
I
ve visited your site and the logo isn
t showing, so, add this custom CSS code:.logo a img { max-height: 84px; height: 84px; width: 150px; }
and you`ll have this result: http://prntscr.com/elq9m1
Best regards,
John TorvikHey amyspearsgavin,
To fix your problem, just add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
@media screen and (max-width: 480px) { .slideshow_align_caption { vertical-align: top !important; } }
Let me know if it works :)
Best regards,
John TorvikMarch 19, 2017 at 6:05 am in reply to: How to move the AJAX search magnifying glass icon to the left of the main menu #763063Hey dburton77,
May you share your website link to me check it better?
Best regards,
John TorvikHi afotey,
I`ve tried to access your link, but there is an issue: http://prntscr.com/elq5f9 – may you check and return me?
Best regards,
John TorvikHi,
Please, share the website link to access the dashboard.
Best regards,
John TorvikHi,
Let us know if you have any other questions or issues :)
Best regards,
John TorvikMarch 18, 2017 at 6:29 am in reply to: Product Category Widget does not align categories properly #762831Hey FadingReality,
To fix it, just add this custom CSS code at Enfold Theme Options > general styling > quick CSS:
.sidebar { text-align: left; }
let me know if it works :)
Best regards,
John TorvikHey thatcommsguy,
The code that you used to remove a category will work if you show the category as regular (when all the items are a list). But in your case, the categories are showed in a drop down, so, to remove a specific category, follow theses steps below:
1. Inspect the category drop down and you`ll see each item and exclusive values -> see here: http://prntscr.com/eldccp
2. Now, to remove the categories that you want, add this custom CSS code at Enfold theme options > general styling > Quick CSS
.widget_categories option[value="42"] { display: none; }
You can see that I remove the category with the value 42, you just need to change this value to remove the category.
That`s it! :)
Best regards,
John TorvikHi,
To fix this problem, you need to disable the “Login Page Styler” that is causing a conflict with the add media button. After it, you can upload any image normally.
Let me know if it works :)
Best regards,
John TorvikHey PUNC,
Please, share with me your WP credentials to me check this better.
Best regards,
John TorvikHey octaviosalles,
Please, may you share your WP credentials and the website link that this problem is occurring?
Best regards,
John TorvikHi,
These are the things that you can do to optimize the website speed and page load courtesy of the WordPress community:
1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
2. Once all images are uploaded on the website, optimize with www optimizer plugin twice 1hr 10mins apart.
3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
4. Use BWP minify plugin to minify scripts and stylesheets.
5. Install WP-Super cache, select all recommended settings.
6. Logout your website, visit every page at least once to create super cache files.
7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
8. Have a cup of coffee.
9. Visit your site after 20 minutes or so.
10. Don’t forget to smile.Best regards,
John TorvikMarch 18, 2017 at 4:00 am in reply to: Fontello Icons showing up as squares (and asian characters). #762801Hi,
Please, take a look in this article:https://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems this should help you.
Best regards,
John Torvik -
AuthorPosts