Forum Replies Created

Viewing 30 posts - 23,281 through 23,310 (of 25,536 total)
  • Author
    Posts
  • in reply to: How to edit the Category Page Design? #747117

    Hey DROR,

    Yes, that’s possible. You can refer to this post: https://developer.wordpress.org/themes/basics/template-hierarchy/

    Best regards,
    Nikko

    in reply to: Using with LearnDash LMS #747114

    Hi Mike,

    The creator of the thread haven’t gotten back on us yet, so we don’t know if the issue is resolved on her end.

    Best regards,
    Nikko

    in reply to: "Read More" Tag not functioning yet #747112

    Hey Nathan,

    I think the right code is:

    <!--more-->

    also make sure that it’s in Text mode not Visual, since < and > are converted to > and < and not working properly.

    Best regards,
    Nikko

    in reply to: Table not formatting correctly #747111

    Hey zakthorpe,

    Can you give us temporary admin access? so we can check for the backend settings.

    Best regards,
    Nikko

    in reply to: Mobile Responsiveness Help #747110

    Hey atrixdave,

    The best approach and get best results for this is use some css codes using media queries: https://www.w3schools.com/css/css_rwd_mediaqueries.asp and also multiple images that are designed for specific width or devices. You can add this css code in Quick CSS located in Enfold > General Styling, it would look something like this:

    /*For Desktop in 1600px width*/
    @media only screen and (max-width:1600px) {
      #sign-up .av-parallax-inner.main_color.avia-full-stretch {
        background-image: url('image_for_1600px_width.jpg');
      }
    }
    
    /*For ipad landscape*/
    @media only screen and (max-width:1024px) {
      #sign-up .av-parallax-inner.main_color.avia-full-stretch {
        background-image: url('image_for_1600px_width.jpg');
      }
    }
    
    /*For ipad portrait*/
    @media only screen and (max-width:960px) {
      #sign-up .av-parallax-inner.main_color.avia-full-stretch {
        background-image: url('image_for_1600px_width.jpg');
      }
    }

    Hope this helps.

    Best regards,
    Nikko

    Hi,

    Can you try to post a link to your page? also if you can give us a draft on where you want to place it.

    Best regards,
    Nikko

    Hi,

    Third party plugins are small programs that are added into your web browser/site to provide additional functionality, basically any plugins in wordpress is a third party plugin.

    Best regards,
    Nikko

    in reply to: Enfold & Woocommerce not sending emails #747100

    Hey iedigitaldesign,

    The login details you gave doesn’t work, please check. The set_is_vat_exempt() function is not part of the Enfold themes function, have you added some custom code in functions.php? Also regarding the email problem, can you give us steps on how we can replicate the same issue?

    Best regards,
    Nikko

    in reply to: Search results messy #747099

    Hi,

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

    .search-results .tribe_events {
        margin-top: 0 !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    in reply to: Fontello Upload Error #747097

    Hey Chris,

    Can you give us temporary admin access? so we can check the backend. Just place the details in Private Content when you reply.

    Best regards,
    Nikko

    in reply to: Problems with warnings/errors #747095

    Hi,

    It’s really hard to figure out what is causing the issue, are you using a plugin to cache the whole site? all the errors posted in the screenshot does seem to point to object cache. Probably the caching settings is misconfigured that’s why after clearing the cache it does work properly.

    Best regards,
    Nikko

    in reply to: Submenu on main menu sidebar always visible #747087

    Hey alefavetto,

    I think it’s possible and after checking your site, it seems that you have already done it.

    Best regards,
    Nikko

    in reply to: Mobile Menu: I don't see #747085

    Hi,

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

    .home .blog-meta a.small-preview {
        width: 250px;
        height: 250px;
    }
    
    .home .blog-meta a.small-preview img {
        width: 100%;
        height: 100%;
    }

    Currently the image size you are using is 180px, you can change the 250px from the code. :)

    Cheers!
    Nikko

    in reply to: Can't change colors #747084

    Hi,

    Can you try to delete enfold.css then copy enfold_en.css, paste it in the same folder and just rename it to enfold.css. Hopefully this one should work. :)

    Best regards,
    Nikko

    in reply to: Gallery #746894

    Hi,

    Glad we could help :)

    Cheers!
    Nikko

    Hey pimroll,

    In the post slider option try to change Preview Image Size to Choose the preview image size manually. Hope it helps :)

    Yes, you can
    Best regards,
    Nikko

    in reply to: Move Title Article #746865

    Hey Antonio,

    Yes, you would need to do few things however.

    1. Use a child theme, instructions can be found here: http://kriesi.at/documentation/enfold/using-a-child-theme/
    2. Override the post slider module, check here for instructions: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    3. The name of the file that needs to changed is: postslider.php.
    4. Edit postslider.php in the child theme and find this code (line 431-450):

    if($show_meta && !empty($excerpt))
    {
    	$meta  = "<div class='slide-meta'>";
    	if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    	{
    		$link_add = $commentCount === "0" ? "#respond" : "#comments";
    		$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    		$meta .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    	}
    	$markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    	$meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    	$meta .= "</div>";
    	
    	if($blogstyle !== "elegant-blog")
    	{
    		$output .= $meta;
    		$meta = "";
    	}
    }

    cut this code and paste it below this code which is just below it:

    $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    $excerpt = apply_filters( 'avf_post_slider_entry_excerpt', $excerpt, $prepare_excerpt, $permalink, $entry );
    $output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Can I remove the WC Cart icon from the header on mobiles #746851

    Hey studio3enfold,

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

    @media only screen and (max-width:767px) {
      .responsive #top .cart_dropdown {
        display: none !important;
      }
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Contact Form Phone Field #746850

    Hey Kevin,

    That feature isn’t available on the Enfold unfortunately. Try to check the contact form plugins like contact form 7 which are more focused on contact forms functionality, the feature you need might be available there.

    Best regards,
    Nikko

    in reply to: Adding recent products within a column #746848

    Hey tremblayly,

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

    div .columns-3 .products .product {
        width: 32.33%;
    }
    
    div .columns-2 .products .product {
        width: 49%;
    }
    

    Let us know if this helps, if it’s not working please give us temporary admin access, the login details you gave doesn’t work.

    Best regards,
    Nikko

    in reply to: Strange HTML Code Added to Text of Posts #746835

    Hey classywebsites,

    It’s hard for us to determine why that is added, it might be one of the plugins installed. Try to disable all plugins then create a new post add same information and check if the code is still modified. If it is you can try to enable one by one while doing the steps before to identify which plugin is causing it.

    Best regards,
    Nikko

    Hey Lyse,

    I could see the code working and can see this text after the price of a product in category and single product page (link in private content):

    (To view wholesale prices, login to your wholesale account)

    As for the css, what would you like to achieve? or change in it’s appearance?

    Best regards,
    Nikko

    in reply to: Custom thumbnails not changing after regenerating? #746831

    Hey boemedia,

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

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Link portfolio item to external URL doesn't work with AJAX #746830

    Hi,

    Can you post a link to the page mentioned? you can put it in the Private Content when you reply, if you want to keep it private. Also we would like to ask for temporary admin access? so we can see the setting you have on that page. Please place the details on Private Content also.

    Best regards,
    Nikko

    in reply to: Multiple image on sidebar/footer #746828

    Hey Danielle,

    There are 2 options I think can help you with that.
    1. Use 2 Advertising Area Widget, make the 2nd one’s title empty then we will add some css code adjust it.
    2. Use a text widget and add a some html codes using links and images.

    Which of the two solutions would you prefer? (and of course we would assist you whatever you choose) :)

    Best regards,
    Nikko

    in reply to: Color for tabel cells and/or columns #746825

    Hi,

    You can put any number as long 6 hexadecimal values, or you can refer to this post: http://www.w3schools.com/cssref/css_colors.asp

    As for nextpage I think the code is wrong, you should use:

    <!--nextpage-->

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Google tag manager #746821

    Hey Joel,

    The easiest way to do that is to use a plugin. If you don’t like to use a plugin, the option is to use a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ then copy header.php of the Enfold theme and paste on the child theme then tweak the header.php code and insert the gtm code.

    Best regards,
    Nikko

    in reply to: Adding parent as title for page sidebar navigation #746815

    Hey neuropetvet,

    Can you give us a link to thread you have mentioned? also a link to a page in your site where you want the title to put in a sidebar so we can atleast see what layout you are using.

    Best regards,
    Nikko

    in reply to: Part of Advanced layout Editor is not beeing processed right #746812

    Hi,

    Can you give us temporary admin access? so we can see the issue as well. Just place the details in Private Content when you reply. Also, just to confirm the issue shows up on the page (link below in private content) but if we preview it in the backend, everything is good?

    Best regards,
    Nikko

    in reply to: Portfolio layered filtering #746809

    Hey enzowillemstad,

    Yes, I think it can be done you just need to create the categories for example breakfast, lunch, dinner, then add the categories to the portfolio item. Create a page called moments, use the portfolio grid, select the categories breakfast, lunch, dinner and by default it shows all, it should have 3 filters breakfast, lunch, dinner. For the other 2 filters you mentioned, same process can be done. Hope this helps.

    Best regards,
    Nikko

Viewing 30 posts - 23,281 through 23,310 (of 25,536 total)