Forum Replies Created

Viewing 30 posts - 6,871 through 6,900 (of 14,834 total)
  • Author
    Posts
  • in reply to: Downloads page #454768

    Hi Goodchild007!

    You could zip up all of the documents and create a text link or use the button shortcode and link to the zip files that way. When the user clicks on the link the browser will download the zip files.

    Regards,
    Elliott

    in reply to: Mobile theme #454764

    Hey suchfin!

    It’s currently not possible. Your page is taking a long time to download on mobiles? Send us a link and we’ll take a look.

    Be sure to optimize your images. Another good way to speed up a WordPress site is to use a caching plugin such as W3 cache or WP Supercache. A plugin such as BWP minify would help also in minifying the JS and CSS.

    Cheers!
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: Enfold Shop Demo Page Builder Question #454759

    Hey AvionicsSource!

    That is using the grid row element. In the layout builder switch to the “Layout Elements” tab and drag the grid row to your content. You can then create two cells and place the contact form in one and your text in the other.

    You can edit each cell and set a custom background to give it that look.

    Cheers!
    Elliott

    Hi Heathcliffe!

    Make sure your using the latest version of Enfold, 3.2, and deactivate all plugins while testing.

    If that does not help then send us a link to your page and we’ll take a look. Keep in mind that when using the transparent header your page content will be displayed at the very top of the page with no padding or margins so it looks like it will be behind the header.

    Regards,
    Elliott

    Hi profumopuntoit!

    Did you make sure to upload images for the different variations? If so and it’s still not working then let’s try following.

    1. Deactivate all plugins except Woocommerce.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    Also make sure that WordPress and Woocommerce are updated.

    If your still having problems after doing the above steps then send us a WordPress login and we’ll take a closer look.

    Regards,
    Elliott

    in reply to: Menu Footer #454754

    Hi newinceptions!

    Set your footer column layout to 3 or 4 columns in Dashboard > Enfold > Footer and then drag the “Custom Menu” widget to whichever column you want in Dashboard > Appearance > Widgets.

    Let us know when your done with that and we’ll give you some CSS to style it.

    Regards,
    Elliott

    in reply to: Breadcrumbs incorrect #454749

    Hi Matt!

    The posts have no relations to pages so the breadcrumbs will display the categories and post title. It will also display the blog page if you have one set.

    Pages on the other hand have a parent and child relationship to each other so the parent pages will display in the breadcrumbs.

    Best regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.

    Hi wipple!

    Have you contacted the plugin author?

    Not sure if we will be able to help you out here but send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    Hey abskevin!

    Make sure your using the latest version of Enfold, 3.2, and deactivate all plugins while testing.

    The login is not working for me, is the information correct?

    Cheers!
    Elliott

    in reply to: Color Problems with alternate content area #454690

    Hi Daniela!

    You have it set to #fafafb and that is what I’m seeing when I view your site. Do you mean your wanting to change the iconbox backgrounds when they are inside the alternate content sections? If so then add this to your custom CSS.

    .alternate_color .iconbox_content {
      background: white none repeat scroll 0 0 !important;
    }

    Regards,
    Elliott

    in reply to: Responsive image size #454682

    Hey johnniemeijer!

    Your slideshow has a few images around 150KB – 200KB. Are you saying you want to make it so the slideshow only displays on desktops and not mobiles?

    Best regards,
    Elliott

    in reply to: Switching to the Child Theme #454679

    Hey!

    That is in case you want to save your customizations that you have done to the theme files. What I would do is zip it up and save it to your desktop. You can find that area in your WordPress theme directory, /wp-content/themes/.

    Regards,
    Elliott

    in reply to: Woocommerce Shop Page/ Grid Not working #454674

    Hey finchkelsey!

    Yes, the page that you select for your shop page in the Woocommerce settings cannot be edited. If you want to create a custom product page then you would just create a new page and add the product grid / list elements to it, etc etc.

    Best regards,
    Elliott

    Hi!

    If you just want to edit the products in the default editor then you’ll need to play around in the /enfold/config-woocommerce/config.php file and move the filters around, etc etc.

    Take a screenshot and highlight exactly what your trying to do and we’ll see if we can help you out.

    Regards,
    Elliott

    in reply to: Sortable portfolio, blog entries #454671

    Hi Dyana!

    So there are more categories there that are not displaying? Make sure that you select all of the categories when editing the shortcode. Also make sure that you have enough posts selected to display on the page.

    For example if you only set it to display 5 posts per page and it loads the last 5 posts which are all assigned to the “Branding” category then the other category filters will not display because there are no posts in the current page to filter.

    Best regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.

    Hey!

    So basically your just wanting to remove the link to this page in your menu correct? You’ll need to navigate to Dashboard > Appearance > Menu and create a new menu for complete control over what links get added to the menu.

    Cheers!
    Elliott

    in reply to: Product list (drag drop list) lost formatting #454663

    Hi mrshaffly!

    I viewed your link and in the bottom left it looks like your using the catalogue element. It seems to be displaying fine for me. Can you take a screenshot and highlight what your trying to do?

    Regards,
    Elliott

    in reply to: CONTROL SPACE LETTER FULL WIDTH SUB MENU #454657

    Hey!

    You could reduce the padding a bit more. Try 2px.

    #top .av-subnav-menu > li > a { padding: 0px 2px !important; }
    

    Best regards,
    Elliott

    in reply to: Different main menu based on cookie #454652

    Hi sooter8!

    I didn’t test this out but try it instead.

    add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args_filter');
    function my_wp_nav_menu_args_filter($args)
     {
     
      if ($_COOKIE['division'] == 'west' && $args['theme_location'] == 'avia' )
      {
      $args['menu'] = 'West Main Menu';
      }
    return $args;
    }

    “avia2” and “avia3” will target the secondary and footer menus.

    Regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.

    Hey!

    See here, http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/.

    As for changing them depending on the user it’s possible but I don’t think it would be feasible to do it in a child theme though. Not unless you were wanting to hide them with CSS. In that case you could try something like this.

    add_action( 'admin_print_styles', 'enfold_customization_admin_css' );
    function enfold_customization_admin_css() {
    	echo '<style type = "text/css">';
    	echo '#mceu_63 { display: none; }';
    	echo 'a[href="#avia_sc_button"] { display: none; }';
    	echo '</style>';
    }

    That code would hide the button shortcode in the layout builder and in the magic wand icon. If you wanted to hide it only for certain users then you could try using the “current_user_can” conditional, https://codex.wordpress.org/Function_Reference/current_user_can, to check if the user has certain capabilities.

    Regards,
    Elliott

    • This reply was modified 10 years, 5 months ago by Elliott.

    Hi!

    Not sure what we could do to troubleshoot that. Try loading a different theme to see if you get the same problems.

    As for the frontend of your site it’s loading in 1.26 seconds on my end which is pretty fast. All of the images look good and there is only 600KB to download so I doubt it could be optimized any further.

    As for the CPU load it sounds like it’s a problem with the server. It might be best to hire someone to make sure there are no problems with the server since your self hosting.

    Regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: problem with image hover on ipad/iphone #454617

    Hey!

    I don’t have an iPad or iPhone to test on but it looks like your using columns with the image element inside. There shouldn’t be any hover effects on mobile devices because you cannot hover on them.

    Instead the caption will display beneath the image on mobiles instead of on hover like on desktops.

    Regards,
    Elliott

    in reply to: Tab titles transparent – how can I fill them? #454051

    Hi sarahrose!

    You can do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, to add custom CSS to the tabs element.

    The CSS you would use would look something like this.

    .tab { background: white !important; }
    

    Or you can drag a codeblock element to your page and add this inside.

    <style type = "text/css">
    .tab { background: white !important; }
    </style>

    Regards,
    Elliott

    in reply to: Tables do not scroll on mobile #454042

    Hey george!

    Your site is in maintenance mode it looks like. Go ahead and take that off or send us a login so we can check.

    When you view your site on mobiles the table widths will be set to use 100% of the width of the page. Are you trying to make it so the table width is a px value and you can scroll around the page?

    Best regards,
    Elliott

    in reply to: Gallery Big Preview Image Size (cant change size) #454036

    Hey Jakob40004000!

    Make sure to remove the demo bar when linking to the demo pages.

    It sounds like your wanting to change the blog style to make it use the small pic preview. You can do this in Dashboard > Enfold > Blog Settings. You can also change the single post featured image size there as well.

    Cheers!
    Elliott

    Hey jenki!

    So in your product category archives the add to cart button is missing? Can you send us a link to your page so we can take a closer look?

    Also try deactivating all of your plugins except for the main Woocommerce plugin to see if they are causing problems.

    Best regards,
    Elliott

    in reply to: Color section width #454027

    Hey screenroot-admin!

    Your talking about the easy slider and the icon list correct? It appears to be displaying correctly on my end. Are you wanting it to stay in two columns on smaller screens instead of combining into one column? If so then you can do this with the grid row element instead of the color section.

    Cheers!
    Elliott

    in reply to: Background slider after content #453990

    Hey Novinit!

    I have not used it before but perhaps this would work for you, https://wordpress.org/plugins/wp-supersized/.

    Regards,
    Elliott

    in reply to: PagesSpeedInsights: compressing and image resizing #453984

    Hey!

    I wouldn’t worry about that. I think it’s just saying to do that since your using 3 columns there and it thinks you could use smaller images in that space. What would happen if you decided to use 2 columns though? You might see some loss of quality. If you absolutely must change it then you could try reducing the resize dimensions around line 125 in the /enfold/functions.php file.

    What you can do though is install a caching plugin such as W3 total cache or WP Supercache. A minify plugin such as BWP minify would help as well. Those are the best options for optimizing a WordPress site.

    Best regards,
    Elliott

    Hey!


    @Nic_007
    , You have the header set to transparent so the content is going to display beneath it. In your Philosophie page you’ll want to set the header style option to “No transparency”.


    @mariuszkos
    , @macrunner, Please send us links to your pages so we can take a look. Make sure your using the latest version of Enfold, 3.1.5, and deactivate all plugins while testing.

    Regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
Viewing 30 posts - 6,871 through 6,900 (of 14,834 total)