Forum Replies Created

Viewing 30 posts - 2,851 through 2,880 (of 2,949 total)
  • Author
    Posts
  • in reply to: Divided sidemenu #763849

    Hey missholst,

    Please, may you share your website link that you`re referring in the question?

    Best regards,
    John Torvik

    in reply to: accordion element in footer? #763846

    Hey 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 Torvik

    in reply to: Icons not loading #763837

    Hey 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 Torvik

    in reply to: Add address in Logo Area #763777

    Hi,

    Let us know if you have any other questions or issues :)

    Best regards,
    John Torvik

    in reply to: Can't Update Cart Quantity on Enfold and Woocommerce #763774

    Hey 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 Torvik

    in reply to: Can I put a tab sectio in a widget area? #763773

    Hey bethperkins,

    May you share with me your WP credentials in the private content to me check better?

    Best regards,
    John Torvik

    in reply to: one-fifth column width help #763770

    Hey 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 Torvik

    Hi,

    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 Torvik

    in reply to: Trying to make menu font bolder #763762

    Hey 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 Torvik

    in reply to: Header Alignment With Tab Section Layout Element #763759

    Hi,

    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 Torvik

    in reply to: woocommerce pagination #763166

    Hey 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 Torvik

    Hey dominiquehurley,

    Please, may you share with me some screenshots to me check better?

    Best regards,
    John Torvik

    in reply to: WooCommerce 3.0 compatible with Enfold? #763097

    Hey 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 Torvik

    Hi,

    The credentials are not correct. May you check it, please?

    Best regards,
    John Torvik

    in reply to: Static Shopping Cart Button #763075

    Hey Nathan,

    Please, may you share with me your website link that this problem is occurring?

    Best regards,
    John Torvik

    in reply to: Site running very slow #763074

    Hi,

    Yes, it`s the plugin :)

    Best regards,
    John Torvik

    in reply to: problem with appearance on mobile #763071

    Hi,

    If you arent using a custom CSS code, youll 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 here

    I`ll need to apply a custom class on this tag, like this:
    text here

    Now, 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.
    in reply to: How to use SVG as logo #763066

    Hi,

    Ive visited your site and the logo isnt 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 Torvik

    in reply to: adjust mobile display #763064

    Hey 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 Torvik

    Hey dburton77,

    May you share your website link to me check it better?

    Best regards,
    John Torvik

    in reply to: Text Block Content Missing (Under grid row element ) #763062

    Hi 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 Torvik

    in reply to: 3/5 Layout Not Staying On Right Side of 1/5 Layout #763061

    Hi,

    Please, share the website link to access the dashboard.

    Best regards,
    John Torvik

    in reply to: Anchor Issues #763059

    Hi,

    Let us know if you have any other questions or issues :)

    Best regards,
    John Torvik

    Hey 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 Torvik

    in reply to: Categories widget #762829

    Hey 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 Torvik

    in reply to: After Update I cannot place any uploaded images #762824

    Hi,

    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 Torvik

    in reply to: Add to Cart not working on ipad #762808

    Hey PUNC,

    Please, share with me your WP credentials to me check this better.

    Best regards,
    John Torvik

    in reply to: Footer problems #762803

    Hey octaviosalles,

    Please, may you share your WP credentials and the website link that this problem is occurring?

    Best regards,
    John Torvik

    in reply to: Site running very slow #762802

    Hi,

    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 Torvik

    Hi,

    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

Viewing 30 posts - 2,851 through 2,880 (of 2,949 total)