Forum Replies Created

Viewing 30 posts - 6,301 through 6,330 (of 14,834 total)
  • Author
    Posts
  • in reply to: WooCommerce #470431

    Hey!

    The shortcode for the Woocommerce cart is [woocommerce_cart], http://docs.woothemes.com/document/woocommerce-shortcodes/.

    To get rid of that text in your checkout then edit your checkout page and delete the [cart] in the page content.

    Regards,
    Elliott

    in reply to: Logo center, navigation to the left & right of logo #470427

    Hey kellymarie2001!

    It might look weird on mobiles but we can try to give you some CSS for this. Send us a link to your page and let us know where your wanting to split it at.

    Regards,
    Elliott

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

    Hey karirak73!

    If your wanting the link to display on the single portfolio post view then the file your looking for is loop-portfolio-single.php. Stuff you add in there will display on the portfolio posts.

    Best regards,
    Elliott

    in reply to: Problem with Full Width Easy Slider on mobile layout #470380

    Hi hackoffseries!

    There just isn’t enough space there. How would you like to change it? Would you like to try reducing the font size?

    Cheers!
    Elliott

    in reply to: Layerslider not showing up on a page #470377

    Hi holleycreative!

    If you have the page set as your actual blog page in Dashboard > Enfold > Theme Options then it’s going to overwrite your page content. Instead you’ll want to remove that and then use the blog posts element and LayerSlider in the page to get the look your wanting.

    Regards,
    Elliott

    in reply to: URGENT PLS – RESTORE HOMEPAGE #470375

    Hi!

    You have a static page set in Dashboard > Settings > Reading. You need to remove that.

    You can set the front page in Dashboard > Enfold > Theme Options.

    As for the homepage not displaying as fullwidth.. it’s displaying that way on my end. Did you get that sorted? Try clearing your browser cache if it’s still not displaying correctly for you.

    Cheers!
    Elliott

    in reply to: Stretched Layout looking like Boxed #470372

    Hi!

    Hmm, line 27 in your grid.css file should look like this.

    .inner-container{ position: relative; height:100%; width:100%; }
    

    Yours has a px value set though. Try adding this to your quick CSS.

    .inner-container{ position: relative; height:100%; width:100% !important; }
    

    Best regards,
    Elliott

    Hey trinawelzlpc!

    Your site does not seem to be loading Enfold for me. You have deleted all plugins?

    Let’s try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure all files are updated.

    If your still having the same problem then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: Grid Row – Sidebar #470357

    Hey Juliandaddy!

    The grid row element is full width so the sidebar will display beneath it. If you need to have the sidebar display with the grid row element then you can use the “Widget Area” element in one of the grid cells.

    If that is not what is happening then send us a link to your page and we’ll take a look.

    Be sure that your using the latest version of Enfold, 3.2.3, and that all plugins are deactivated while testing.

    Cheers!
    Elliott

    in reply to: Avia Editor not showing #470354

    Hey!

    Make sure Enfold is updated to the latest version, 3.2.3, and deactivate all plugins while testing. If it’s happening on just one post and not others then try deleting the post and recreate it.

    If your still having problems then send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Center Team Member Name #470353

    Hi ItsYeBoi!

    Add this to your custom CSS.

    .team-member-name { text-align: center !important; }
    

    Cheers!
    Elliott

    in reply to: Mega Menu – Top Level Images Instead of Text #470347

    Hey!

    Your talking about the top level link that activates the mega menu correct? We have an option for changing the style of those links. You could set it to “bordered” or “colored button”. Just click on the dropdown arrow of the link in your dashboard to change it’s style.

    As for adding your own image, yes, you could add some HTML inside the navigation label of the link to display an image instead of text. The HTML would look like this.

    <img src = "URL to your image" />
    

    Best regards,
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: Google Analytics Enhanced Link Attribution #470345

    Hi!

    It might be a bit difficult depending on the element your trying to add it to. If your just trying to create simple links in your page content then you could use a codeblock element and paste the HTML inside.

    For a button you could create the button and then view your page source and copy the HTML and then paste that inside a codeblock element in your page and add the ID in that way.

    Here is an example of what it would look like.

    <div class="avia-button-wrap avia-button-center  avia-builder-el-28  avia-builder-el-no-sibling "><a id = "buttonID101" class="avia-button  avia-icon_select-no avia-color-theme-color avia-size-large avia-position-center " href="http://www.yourdomain.com/mandanten/notare/"><span class="avia_iconbox_title">Notare</span></a></div>
    

    Best regards,
    Elliott

    in reply to: Enfold – Logo Position #470327

    Hey!

    It looks the same to me in all browsers. I’m also on Windows 8.1. Perhaps it was a browser extension or caching issue?

    Cheers!
    Elliott

    in reply to: Portfolio text to top of gallery #470323

    Hey EricSmeets!

    Try adding this to your custom CSS.

    @media screen and (max-width:767px) { 
    .grid-content {
      position: absolute;
      top: 0px;
    }
    }

    I think that the script will update automatically and display the correct sizes.

    Best regards,
    Elliott

    Hey!

    Try adding this to your child theme functions.php file instead.

    function avia_woocommerce_cart_placement() {  }
    

    Cheers!
    Elliott

    in reply to: Google Maps and CSS Animations Not Working #470315

    Hi!

    Your getting a few javascript errors. Let’s try the following.

    1. Deactivate all plugins.

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

    3. Activate Enfold instead of the child theme.

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

    Best regards,
    Elliott

    in reply to: Enfold them update from 2.8.1 to latest #470309

    Hey!

    You would not be able to move the parent functions.php file to the child theme folder. What you’ll need to do is add the changes to your child theme functions.php file.

    This isn’t as simple as copying the changes over though. Depending on the exact customizations done you will want to utilize hooks or override functions.

    I recommend reading this, http://themeshaper.com/modify-wordpress-themes/, for how to use hooks.

    And for overriding functions open up the functions-enfold.php file. You see how the functions are surrounded with something like this?

    if(!function_exists('avia_preload_screen'))
    {
    
    }

    When they are surrounded with that then you can copy the whole function to your child theme functions.php file and edit it however you need and it will be used instead.

    As for the header.php, single.php, and footer.php, those are actual template files so you can copy them over to your child theme folder and they will be used instead of the parent theme versions. You’ll want to make sure to use the updated files from Enfold 3.2.3 though as they may have been changed.

    And for the CSS and JS files such as avia.js, shortcodes.js, etc etc, see here, https://kriesi.at/support/topic/use-avia-js-in-child-theme/#post-230498.

    Cheers!
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: Mobile Menu Button Color #470306

    Hi djshortkut!

    Add this to your custom CSS.

    #advanced_menu_toggle, #advanced_menu_hide {
      background: white none repeat scroll 0 0 !important;
    }
    #advanced_menu_toggle:hover, #advanced_menu_hide:hover {
      color: blue !important;
    }

    Regards,
    Elliott

    in reply to: Testimonial Image animation #470305

    Hi!

    Try adding this to your custom CSS.

    .avia_transform .avia-testimonial .avia-testimonial-image {
      opacity: 1 !important;
      transform: scale(1) !important;
    }

    Regards,
    Elliott

    in reply to: Contact Forms gone missing #470300

    Hi laptophobo!

    I sent you a test email. Let us know if you received it.

    Cheers!
    Elliott

    in reply to: empty columns being added – cannot delete them! #470297

    Hey!

    If you have edited the files without using a child theme then they will need to be redone after updating.

    The theme settings will be saved (unless you have renamed the theme folder) but you can still export them in Dashboard > Enfold > Import/Export just to be sure.

    Regards,
    Elliott

    Hi Andreas!

    1. In this case you will want to use the Masonry element instead, http://kriesi.at/themes/enfold/portfolio/masonry-portfolio/. By default the title will animate and “fold” up. Getting a different animation is going to take a lot of time and code and would have to be considered custom work. You could try creating your own using an online tool such as this though, http://cssanimate.com/.

    2. In Dashboard > Enfold > Header there are options to have the header “sticky” so it scrolls down the page with you. Are you wanting to have it hidden until you start scrolling?

    3. It would depend on the element. Some of them, such as images, already have a fade in option.

    Best regards,
    Elliott

    Hey dynamitec!

    Windows phone has very little market share (around 3%?) so it hasn’t been a high priority. We would love to help you out but I don’t think any of us actually has a Windows phone right now.

    That doesn’t mean we are giving up on it though. It’s just going to take some time before our devs get a chance to look.

    Best regards,
    Elliott

    Hey m!

    It’s displaying fine for me. I assume you created the post with the advanced layout editor and then later switched to the default editor.

    The layout builder is for users who need complete control over how their posts display so all of the regular post elements will be gone. It would be best to use the default editor if you want it to display like a regular post.

    Best regards,
    Elliott

    in reply to: No form is working #469862

    Hey kenzeler!

    First off do the steps here, http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/, and let us know of the results.

    Regards,
    Elliott

    in reply to: empty columns being added – cannot delete them! #469861

    Hey ermington!

    Your using Enfold 3.1.3. Go ahead and update to the latest version, 3.2.3. You also need to update WordPress.

    If your still having problems after doing the updates then try deactivating all plugins and delete / recreate the page.

    Best regards,
    Elliott

    in reply to: AVIA editor in blogposts #469850

    Hey!

    You could use the special heading element. For the meta you could use a textblock or codeblock element. If you need your post to display like a regular post then it would be best to use the default editor. The layout builder is for users who need complete control over how their post displays.

    Best regards,
    Elliott

    in reply to: Issue with top of the page #469848

    Hi Antonio!

    You have an iframe being inserted at the top of your site. If you did not add it yourself then deactivate all of your plugins and reactivate them one by one to see which one is adding it.

    Best regards,
    Elliott

    Hi gigoz!

    I did not see the menu anywhere. Send us a link to the exact page where your using it and we’ll take a look.

    Cheers!
    Elliott

Viewing 30 posts - 6,301 through 6,330 (of 14,834 total)