Forum Replies Created

Viewing 30 posts - 31,411 through 31,440 (of 34,893 total)
  • Author
    Posts
  • in reply to: Can't import Demo #869928

    Hey kobeleung,
    Often this is resolved by increasing the PHP memory limit in WordPress, using FTP, try pasting this code in the wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’

    define( 'WP_MEMORY_LIMIT', '256M' );

    Another solution is to also try adding these rules in your .htaccess file using FTP:

    php_value max_execution_time 180
    php_value upload_max_filesize 20M
    php_value post_max_size 50M

    Sometimes this may conflict with your host so try adding one line at a time & if any of them causes your site to stop working just remove them.
    Also try disabling all of your plugins.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look for errors.

    Best regards,
    Mike

    in reply to: Contact form not working #867529

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Main Menu Drop-Down Colors #867526

    Hi,
    I don’t see any conflicts, try this code and adjust to suit:

    
    /*menu text color*/ 
    .header_color .main_menu ul:first-child > li > a {color: blue !important;}
    /*menu background color*/
    .header_color .main_menu ul:first-child > li > a {background-color: tan !important;}
    /*menu text hover*/
    .header_color .main_menu ul:first-child > li > a:hover {color: red !important;}
    /*menu background color hover*/
    .header_color .main_menu ul:first-child > li > a:hover {background-color: black !important;}
    /*sub-menu text color*/
    .header_color .main_menu .menu ul li a {color: black !important;}
    /*sub-menu text hover*/
    .header_color .main_menu .menu ul li a:hover {color: blue !important;}
    /*sub-menu background color*/
    .header_color .main_menu .menu ul li a {background-color: red !important; }
    /*sub-menu background hover color*/
    .header_color .main_menu .menu ul li a:hover {background-color: green !important; }

    Best regards,
    Mike

    in reply to: Menu anchors scroll to section offset #867391

    Hi,
    Thanks, Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Spotify embeed problem #867390

    Hi,
    It played for me as soon as I scrolled down to find it, I just had to click on one of the tracks.
    I’m using Chrome on Windows 10, what are you using?

    Best regards,
    Mike

    in reply to: Article-image should not be listed in Lightbox #867373

    Hey th-photography,
    I understand, but all of the images on a page that are lightbox enabled will show in the lightbox. We don’t have a way to exclude a certain image. Solutions to this are:
    1. Add the no pointer event (your using this now)
    2. You can edit your blog posts and choose not to display featured image on single posts
    3. add the “noLightbox” class to your /enfold/includes/loop-index.php
    starting at line 196 look for:

    				        if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    				        if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
    				    }
    					
    				    if(!empty($before_content))
    				        echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';

    replace with:

    				        if($slider) $slider = '<a href="'.$links.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    				        if($slider) echo '<div class="big-preview noLightbox '.$blog_style.'">'.$slider.'</div>';
    				    }
    					
    				    if(!empty($before_content))
    				        echo '<div class="big-preview noLightbox '.$blog_style.'">'.$before_content.'</div>';

    Best regards,
    Mike

    in reply to: Spotify embeed problem #867363

    Hi,
    I couldn’t find where the element is, can you link to it?

    Best regards,
    Mike

    in reply to: Can't save changes to one of the pages #867358

    Hi,
    I fixed the name, Glad we were able to help, we will close this now. Thank you for using Enfold.
    Best regards,
    Mike

    in reply to: Main Menu Drop-Down Colors #867355

    Hey ScottYetter,
    Try using the Enfold Theme Options > Advanced Styling > Main Menu Links and check the box Apply only to mouse hover state for the hover state. This means that you need to use this option twice, one checked, one not.
    For the box shadow and the line try this code:

    .av-main-nav ul {box-shadow: none!important;} 
    .av-main-nav > li > ul {
        border-top-width: 0px!important; 
        border-top-style: none!important; 
    }

    Best regards,
    Mike

    in reply to: Vimeo avia.js error #867354

    Hey CloudChoice,
    This has been reported as the vimeo player.
    The solution reported was adding &api=1 to the vimeo url to remove the error.

    Best regards,
    Mike

    in reply to: Bullets in widget #867350

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Spotify embeed problem #867345

    Hi,
    Can you please include a admin login and the url to the page in question in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Can't save changes to one of the pages #867344

    Hi,
    Glad to hear, I removed your name, let me know if I did so in the right spot so I can close this :)

    Best regards,
    Mike

    in reply to: Layerslider not working after upgrading enfold theme #867341

    Hi,
    WordPress has been known to cause false positives in mod_security, check this out:

    Best regards,
    Mike

    in reply to: Bullets in widget #867335

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .textwidget ul li:before {
        display: list-item;
        content: "";
        list-style: disc inside;
        float: left;
        position: absolute;
        left: 0;
    }
    .textwidget ul li {
        list-style: none;
        padding-left: 13px;
    }

    please see screenshot in Private Content area

    Best regards,
    Mike

    in reply to: If responsive start entry-title beneath featured image #867330

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Spotify embeed problem #867322

    Hi,
    I tried your code on my localhost and found that it worked after about 30 seconds, each time I reloaded the page it would take about 30 seconds before the sound would play. I thinking that it needs that time to get the info from spotify. I found no errors in the console.
    Please see if this is true for you also.

    Best regards,
    Mike

    in reply to: Menu anchors scroll to section offset #867310

    Hi,
    Did you use the post or the plugin?

    Best regards,
    Mike

    in reply to: Change Shipping Text to Delivery on Checkout/Cart #867305

    Hey metrocitygirl,
    I see that this filter doesn’t work anymore.
    Try editing cart-totals.php directly on line 56, look for:

    <td data-title="<?php esc_attr_e( 'Shipping', 'woocommerce' ); ?>"><?php woocommerce_shipping_calculator(); ?></td>

    Or try the plugin Loco Translate

    Best regards,
    Mike

    in reply to: If responsive start entry-title beneath featured image #867290

    Hey erwin_m,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 450px) { h2.post-title.entry-title {display:inline-block;}
    .blog-meta img {left: 25%;}}

    I also added the code to center the image above the title.

    Best regards,
    Mike

    in reply to: Bullets in widget #867285

    Hey troupdim,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Spotify embeed problem #867284

    Hey takozzo,
    Are you adding the code to a code block element? Can you post the code you are using?

    Best regards,
    Mike

    in reply to: Add a button "Read" to grilla blog #867281

    Hey jaumellagostera,
    Are you using the default editor or the advanced editor for your blog posts?

    Best regards,
    Mike

    in reply to: Menu anchors scroll to section offset #867273

    Hey raslade,
    Perhaps this will help: https://kriesi.at/support/topic/scroll-down-to-next-section-offset/#post-802848
    Or perhaps a plugin such as Page scroll to id

    Best regards,
    Mike

    Hi,
    To remove the dark top band and show the social icons in mobile view, try this css:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks {display: block!important; }
    .html_stretched #wrap_all {margin-top: -20px!important; }}

    please see screenshot in Private Content area

    Best regards,
    Mike

    in reply to: Adding another image next to logo #867245

    Hi,
    For your logo have you tried Guenni007 solution?
    For the flags try adding a custom social icon which would be in the top right hand of your page. Then link it to a new page that you can build to look like the nike page, or use a language plugin.

    Best regards,
    Mike

    Hi,
    Only from your error messages and the experience that mixing builders often leads to these issues. Have you had a chance to update your theme?

    Best regards,
    Mike

    in reply to: Change Woocommerce product title font family #867233

    Hi,
    This is using this span class:

    <span class="special_amp">&amp</span>

    and this css:

    .special_amp {
        color: #c50045;
        font-family: "Baskerville", "Palatino Linotype", "Palatino", "Times New Roman", serif;
        font-style: italic;
        font-size: 1.3em;
        line-height: 0.5em;
        font-weight: normal;}

    You would need to have that font installed on your site as it is not a built in font.
    Please refer to this link http://wpsites.net/web-design/fonts-wordpress/
    or if you like to add a single font an alternate solution is to use a plugin like https://wordpress.org/plugins/use-any-font/

    Best regards,
    Mike

    in reply to: Responsive behaviour of columns #867231

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 31,411 through 31,440 (of 34,893 total)