Forum Replies Created

Viewing 30 posts - 15,001 through 15,030 (of 25,536 total)
  • Author
    Posts
  • in reply to: Logo Icon (hamburger) left, logo center #1034356

    Hi grafixstudio,

    Glad to hear that :)
    Can you try adding this css code after the code I gave:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all #header_main .main_menu {
        left: 0;
        right: auto;
      }
    
      .html_header_top #top .av_logo_right #header_main .logo {
        position: relative;
        left: 50%;
        right: auto;
        margin-left: -41.5px;
        margin-right: 0;
      }
    }

    Best regards,
    Nikko

    in reply to: Author bio in every portfolio item #1034350

    Hi kenwcmg,

    No worries that’s what we are here for :)
    Let us know how it goes and if you need further assistance.

    Best regards,
    Nikko

    in reply to: LayerSlider #1034349

    Hi NoraGTS,

    Can you try to clear the browser cache?
    I have checked it using Chrome and Firefox and looks great on both without those spaces in the screenshot.
    I have posted screenshots in private content.

    Best regards,
    Nikko

    in reply to: Lightbox is not working anymore #1034340

    Hi Michael,

    Can you try to switch theme, from your child theme to Enfold (parent theme)?
    Then check if lightbox still works, if yes then there’s probably some code in your child theme that’s hindering it from working.
    If no, try to temporarily disable all plugins and check if lightbox works or not.

    Best regards,
    Nikko

    in reply to: Author bio in every portfolio item #1034019

    Hi kenwcmg,

    You need to insert it in functions.php which can be found in Method 3: Adding Author Info Box Using Code in the link you gave.
    I believe you have this code:

    if ( is_single() && isset( $post->post_author ) ) {

    try to replace it with:

    if ( is_singular('post') && isset( $post->post_author ) ) {

    and that should do it.

    Best regards,
    Nikko

    in reply to: Change "Home" Breabcrums #1034016

    Hi Lex2014 ,

    Try using this code:

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    	$args['show_home'] = 'My Site';
    	return $args;
    }

    replace My Site with the text you want to use.

    Best regards,
    Nikko

    in reply to: Enfold Custom Post Type and Masonry/blog elements #1034011

    Hi acscreativenew,

    I tried to check on the links you gave and the credentials however I’m only getting this:

    Forbidden
    You don't have permission to access /news-events on this server.
    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

    Can you post the function that lets you add your cpt to the builder elements?

    Best regards,
    Nikko

    Hi timchurchman,

    Can you try Masonry for this?
    It doesn’t have a read more link but you’ll have the option to show the excerpt or the title.
    Also for it’s pagination, you’ll have this option: Display “Load More” Button.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Publishing Front Page not showing updates #1034002

    Hi michellevelasss,

    I tried logging in using the credentials you posted however it doesn’t work, please check.

    Best regards,
    Nikko

    in reply to: How to change page title to blog post category name #1034001

    Hi dannhanks,

    Can you give us a link to the page that shows the issue? so we can check further.

    Best regards,
    Nikko

    in reply to: Masonry Gallery images not lining up #1034000

    Hi Picante,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Adding text after quantity in WooCommerce Product page #1033999

    Hey Johnny,

    Can you give us a link to your site? so we can take a closer look.

    Best regards,
    Nikko

    in reply to: Google maps has vertical empty strokes in the footer #1033996

    Hey Sander,

    I have checked your site, however I don’t see any maps at the bottom.
    Can you give us a screenshot of how it looks? how do we see it on your site?

    Best regards,
    Nikko

    in reply to: Option to change quantity in cart on mobile screen #1033994

    Hey Matt,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive .shop_table .product-quantity {
        display: block !important;
        max-width: 83px;
      }
    
      .responsive .shop_table .product-quantity input[type="button"] {
        display: none !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: LayerSlider Button Border-width #1033991

    Hey Carl,

    We apologize for the late response.
    You can use this custom code:

    border: 5px solid white;

    Just replace 5px for the border width that you like to use, and also replace the color.
    You can see in the screenshot how it is applied: https://imgur.com/a/GJf8dSM
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Logo Icon (hamburger) left, logo center #1033989

    Hi grafixstudio,

    We apologize for the late response.
    Since you are using Logo right, Menu left for Menu & Logo Position, try adding this css code in Quick CSS (located in Enfold > General Styling):

    .html_header_top #top .av_logo_right .logo {
        right: 50%;
        margin-right: -35.5px;
    }

    Best regards,
    Nikko

    in reply to: Lightbox is not working anymore #1033918

    Hey icodesign,

    Thanks for giving us admin access.
    Since you are using a child theme, I have tried to check in Appearance > Editor, however it’s disallowed.
    If you have a customized header.php, try updating it to the header.php since there are lots of changes there in the new version.
    Let us know if it helps.

    Best regards,
    Nikko

    in reply to: Sticky image below header #1033915

    Hi Mark,

    I think that’s possible via Quick CSS.
    However we would need a link to your site and link of the image you’d like to use.
    You can post the links in private content, if you only want it to be visible to the moderators only.

    Best regards,
    Nikko

    in reply to: Embedding facebook videos causes white space om mobile #1033913

    Hey roamingk,

    That’s because the height is set to 720 in the embed code.
    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:479px) {
      #top .avia_codeblock iframe {
        max-height: 320px;
      }
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: LayerSlider #1033912

    Hi NoraGTS,

    Can you give us a screenshot for the white border you mentioned?
    You can upload it in https://imgur.com/ or other online image sharing sites and post the link here: https://imgur.com/
    As for skin.css, can we request for ftp access? so we can check further.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Remove space in caption content / full width slider #1033909

    Hey Malene,

    We apologize for the late response.
    I have checked your slider and i don’t see any captions.
    where can we see this?

    Best regards,
    Nikko

    in reply to: code in footer integrieren #1033908

    Hi diefleischerei,

    Yes, that is also one of the ways we recommend on doing.
    As long as your child theme is enabled in the Themes, the footer.php file you have in your child theme will be used instead of the parent theme.
    Let us know how it goes.

    Best regards,
    Nikko

    in reply to: Social Share module produces error #1033902

    Hi Karl,

    You can put the site under maintenance for few minutes and disable the plugins temporarily then check.
    If you don’t want the live blog site to be affected, try creating a stage site (basically just a duplicate of your live site): https://themeisle.com/blog/wordpress-staging-site/
    So you can try disable the plugins without affecting the live site and if you still have those issues you can give us credentials and we will try to check on the issue on your stage site.

    Best regards,
    Nikko

    in reply to: Problem with horizontal gallery #1033901

    Hey gabs01,

    We apologize for the late response.
    Try using 300 x 300px, since it’s ideal for a circular image to have both height and width in equal size.
    As fr the portfolio item, are you referring on Collaborations section in the link you gave?

    Best regards,
    Nikko

    in reply to: Mobile Breakting Point #1033897

    Hi Esther,

    Can you try replacing it with:

    @media only screen and (max-width: 1366px) and (min-width: 768px) {
      .html_header_sidebar #header .av-main-nav > li {
        display: none !important;
      }
    
      .html_header_sidebar #top #header .av-main-nav > .av-burger-menu-main {
        display: block !important;
      }
    }

    Best regards,
    Nikko

    in reply to: VIDEO LIGHTBOX Not Working #1033896

    Hi Justin,

    Can you give us access to your site again?
    I’ll try to create a test page that has a button which when clicked opens a youtube video that automatically plays.

    Best regards,
    Nikko

    in reply to: Shortcode in Excerpt not working in Portfolio Grid #1033894

    Hi Gregor,

    Glad to hear that :)
    And thanks for posting the solution that worked for you.
    It should help anyone that needs the same modification for portfolio.

    Best regards,
    Nikko

    in reply to: Quick CSS Mistake #1033893

    Hi Nathan,

    Glad to hear that. :)
    I have added this css code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:479px) {
      .responsive #top.home #fullscreen_slider_1 .slideshow_caption h2 {
        font-size: 50px !important;
      }
    
      .responsive #top.home #fullscreen_slider_1 .slideshow_caption p {
        font-size: 22px;
        line-height: 1.4;
      }
    }

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Woocomerce shopping cart #1033887

    Hi Schmidtgrafisk,

    I apologize for the late response.
    The theme only provides basic ecommerce functions which is basically what woocommerce provides and theme integrates the plugin and provides different options to display products.
    As for our theme support, we would like to help with the customization however if it does take a lot of time to do the tweak or modification and there are lot of queues in the forum then we really can’t help with it but we still do try to point you to the right direction by giving links which might be helpful.
    With regards to the issue with the shopping cart, can you give us permission to temporarily deactivate your plugins? as we don’t experience the same issue on our local server even with the same settings.

    Best regards,
    Nikko

    in reply to: Shortcode in Excerpt not working in Portfolio Grid #1033071

    Hi gregorh,

    If you want to use the shortcode, I think you can just override Post Slider.
    You can read our documentation for more information: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

Viewing 30 posts - 15,001 through 15,030 (of 25,536 total)