Forum Replies Created

Viewing 30 posts - 23,101 through 23,130 (of 25,536 total)
  • Author
    Posts
  • in reply to: WooCommerce "Warenkorb" styling #751084

    Hey onlinerin,

    Can you post a link to the page mentioned? for the h1 and h2, do you want a separate font style on shop?

    Best regards,
    Nikko

    in reply to: Dots instead of bar separators in main menu #751083

    Hi,

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

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border-left: 0 !important;
    }
    
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text:after {
        content: '*';
        display: inline-block;
        margin-left: 13px;
    }
    
    .av_seperator_small_border .av-main-nav > li:last-child > a > .avia-menu-text:after {
        display: none;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Issue with Masonry Gallery on mobile #751081

    Hi,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    .mfp-img {
        -webkit-animation: none !important;
        animation: none !important;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: How to put title and date above featured image on post? #751080

    Hi,

    Try to add this code at the bottom of functions.php:

    function move_featuredimage_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function move_featuredimage() {
    		jQuery("#top.single").find(".big-preview.single-big").insertAfter(".entry-content-wrapper .entry-content-header");
    	}
    
    	move_featuredimage();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'move_featuredimage_script');

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Space between gridrow-columns #751078

    Hi,

    Try to do the following:

    1. Create a 3 columns gridrow and add an ID col-a
    2. Create another 3 columns gridrow and add an ID col-b
    3. Add this css code in Quick CSS (located in Enfold > General Styling):
      #col-a, 
      #col-b {
          width: 50%;
          float: left;
          clear: none;
      }

    Hope this helps.
    Best regards,
    Nikko

    in reply to: Sales Tax State embedded in cart – Woocommerce #751076

    Hi,

    Is it the WA State Residents only in the Shipping of your Cart page? if yes, it’s a functionality of wordpress and Enfold only adjusts the layout to be compatible with the theme. Try to contact Woocommerce support for this.

    Best regards,
    Nikko

    in reply to: BuddyPress #751074

    Hi Jody,

    Have tried it on my end and the Buddypress pages seems to display just fine. Try to add the shortcodes on the said pages, if it’s not working can you try to give us admin access?

    Best regards,
    Nikko

    in reply to: Comment section not showing up #751071

    Hi,

    Glad that it’s fixed.

    Best regards,
    Nikko

    in reply to: Link underline….in color? #751070

    Hi,

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

    #top #header .av-main-nav > li > a .avia-menu-text {
        color: #000;
    }
    
    #top #header .av-main-nav > li.current-menu-item > a .avia-menu-text,
    #top #header .av-main-nav > li > a:hover .avia-menu-text {
        border-bottom: 1px solid blue;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: question 3 #750448

    Hi,

    I just checked with my android phone and chrome browser and I don’t see the button having space on the left as what you have in the screenshot. Can you tell us what phone and browser you are using so we can atleast verify it, since we couldn’t see the same issue and the code Ismael gave seems to work out fine. Try also clearing the browser cache, which might help.

    Best regards,
    Nikko

    in reply to: Posts searchable by year on one page #750442

    Hi,

    I’m not sure what’s the right plugin but maybe you can try something like Search Filter or Search Filter by date/year, etc.

    Best regards,
    Nikko

    in reply to: Change color of Accordion sorting tag line #750441

    Hi,

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

    .home #after_section_4 {
        display: none !important;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    in reply to: Responsive Vimeo embeds #750439

    Hi,

    I can’t be totally sure but I’m guessing it’s one of the plugins you are using, I could try to check that out but would require deactivating plugins and checking one by one.

    Cheers!
    Nikko

    in reply to: Limit number of thumbnails in Gallery #750413

    Hi,

    Can you post links to the pages mentioned? also can you provide temporary admin account so we can check the backend for the said pages. Please place the login details in Private Content when you reply.

    Best regards,
    Nikko

    in reply to: Show excerpt #750408

    Hey hotspot,

    Enfold doesn’t have category.php but it does have archive.php which is the fallback if there’s no category.php, you can refer to this post regarding template hierarchy: https://developer.wordpress.org/themes/basics/template-hierarchy/

    Instead of using excerpt which requires tweaking the Enfold theme, I would suggest using the More Tag: https://en.support.wordpress.com/more-tag/ which should add the Read More link.

    Best regards,
    Nikko

    in reply to: Full Video Background / Custom background Video #750380

    Hi,

    That feature isn’t available and I doubt that would be added but Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    The workaround for that should be to use a Color Section then add a background video and set the header to transparent, which would produce similar result.

    Best regards,
    Nikko

    in reply to: Avia Menu Button colored #750377

    Hi,

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

    #top.page-id-1131 #wrap_all .av-subnav-menu .av-menu-button-colored.menu-item-top-level-1 > a .avia-menu-text,
    #top.page-id-1177 #wrap_all .av-subnav-menu .av-menu-button-colored.menu-item-top-level-2 > a .avia-menu-text,
    #top.page-id-1181 #wrap_all .av-subnav-menu .av-menu-button-colored.menu-item-top-level-3 > a .avia-menu-text,
    #top.page-id-1188 #wrap_all .av-subnav-menu .av-menu-button-colored.menu-item-top-level-4 > a .avia-menu-text {
        background-color: #ccc;
    }

    Just adjust the background color as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Advanced Custom Fields don't show on pages, posts etc #750370

    Hi,

    I checked the Posts and ABOUTUS page where you set ACF to show up and I can see the fields in the backend when you edit the page/post. Are you referring to showing it to the frontend? this doesn’t automatically show up and format on the frontend where you set it but it simplifies the custom fields in the backend, for this to show up in the page or posts, you need to edit some files and write some php codes for this to work. You can refer to ACFs documentation on how to do this.

    Best regards,
    Nikko

    in reply to: Changes on pages wont'save #750365

    Hi,


    @scienseed
    : Tried to check your wp-admin page but it returns:

    Acceso restringido

    Also, can you let us know what is the username? we would also need ftp access.


    @Wildwood
    : just tested your site and it the doesn’t save/update the changes being done to the page. Would you allow us to deactivate plugins on the site? and also provide ftp access, so we can check the files and error logs.

    Best regards,
    Nikko

    in reply to: Installing enfold and a few questions on styling #750357

    Hi,

    Sorry for the delayed response.

    1. Since there are only few options to make things simple, that’s why changing a few options would make a large change to make things uniform. Try adding this css code for buttons in Quick CSS (located in Enfold > General Styling):

    #top .main_color .avia-button {
        color: #fff;
        background: #72c7ce;
        border: 0 !important;
    }

    For links in text try this css code:

    #main a {
        color: #222222;
    }

    For footer try:

    #top #socket a {
        color: #ffffff;
    }

    2. Is this on the homepage? try to remove the changes you made for this and also tell us what you want to achieve, something visual would be more helpful.

    Best regards,
    Nikko

    in reply to: Blog: featured images: not appearing #750351

    Hi,

    To summarize that this is how it works:
    Blog/Category/Tag – uses featured image.
    Single Blog Post (using Default Editor) – uses featured image.
    Single Blog Post (using Advanced Layout Builder) – does not display featured image.

    Best regards,
    Nikko

    in reply to: can't upload favicon.ico #749831

    Hi,

    Try to check the solution in this post: http://freewptp.com/fix-wordpress-issue-sorry-this-file-type-is-not-permitted-for-security-reasons/

    Best regards,
    Nikko

    in reply to: Font Manager Class PHP ERROR??? #749825

    Hey mattnystrom,

    Try to go to Enfold > Import/Export > Iconfont Manager then remove Flaticon. Hope this helps.

    Best regards,
    Nikko

    in reply to: Error on New Enfold install, App demo #749823

    Hey sv3designs,

    Try to go to Enfold > Import/Export > Iconfont Manager then remove Flaticon. If that doesn’t work can you provide temporary admin access?

    Best regards,
    Nikko

    in reply to: "Accordion" Toggle – Animation problem! #749820

    Hi Marcin,

    You’re welcome :) I think you are referring to the issue during hovering the image, which should be fixed with the code I gave. Let us know if I’m mistaken and the issue is still there :)

    Best regards,
    Nikko

    in reply to: Responsiveness of Productcategories on mobile phone #749816

    Hi,

    Yes, we will try to help you with that. And you are right I was checking the subdomain link from the private content. It should be safe to post your login details in the Private Content (have posted my email on Private Content).

    Best regards,
    Nikko

    in reply to: How to fix the blog post meta line #749812

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Problems with API #749763

    Hey,

    This is what I get when I to check the wp-admin page (link in private content). I’ll try to ask my fellow moderators to check on this.

    Cheers!
    Nikko

    in reply to: Displaying Posts #749761

    Hey,

    Glad we could help :)

    Regards,
    Nikko

    in reply to: Stable vertical custom menu #749660

    Hey Designweb,

    Is there a particular link or reference where we can see what you want to achieve?

    Best regards,
    Nikko

Viewing 30 posts - 23,101 through 23,130 (of 25,536 total)