Forum Replies Created

Viewing 30 posts - 7,951 through 7,980 (of 8,514 total)
  • Author
    Posts
  • in reply to: Entypo Font in Safari (Win) #123116

    Glad Nick could help :)

    in reply to: Renaming Theme Folder #123311

    Hi Michael,

    No, it should be fine. Just make sure that if you use a child theme it uses the same name and case as the newly named parent in its style.css.

    Regards,

    Devin

    in reply to: Thin dotted line on mega menu #123211

    Hi UKiain,

    By default the mega menu should have a line between each of the columns (see demo Pages sub menu for example).

    If you can provide a link to the site we can inspect the code and see why the other column isn’t getting it.

    Regards,

    Devin

    in reply to: How to change the Post Title to H1 #123031

    Hi bakbek,

    Within that file you can go through and change the instances of h2 to h1 which will change it for all post formats. The custom.css file is in the css folder of the theme files and the Quick CSS is in the Styling tab of the theme options.

    Regards,

    Devin

    in reply to: Anchor links #122966

    Hi Dave,

    If we can see the site live with the anchor links in place maybe we can come up with something. The gist of it is that you need to remove the styling from .main_menu ul:first-child > li.current_page_item > a so that you can then assign it for the active link somehow based on your own custom classes or something like that.

    Regards,

    Devin

    in reply to: Jumbo menu not aligned #122980

    Hi xaa84,

    While waiting for Kriesi to take a look, can you try disabling any active plugins you have installed and then re-setting that menu by going in and moving an item within that sub menu and re-saving. You fix it back to normal after and see if that helps.

    Regards,

    Devin

    in reply to: Images are automatically sliced? #123335

    Hi iclarity,

    WordPress has a function that allows developers to tell it to create thumbnails of images when they get uploaded. So when you upload an image Enfold has asked wordpress to make a few additional copies at various sizes. What you are seeing is one of those sizes shown instead of the fullwidth image.

    You should still be able to see the full width image if you insert it at Full Size in a visual editor or by going to its direct url.

    Regards,

    Devin

    in reply to: Enfold Portfolio Excerpt #123135

    Hi andreanapier1985,

    I believe the portfolio element actually needs to have a featured image set for the portfolio item for the display to work properly. So if an image isn’t set, the excerpt doesn’t get rendered and the layout tends to fail.

    I’m not familiar with any plugins off hand that offer a absolute positioned contact button but I’m sure there are some out there as I’ve seen it used with a similar look on other sites from time to time.

    Regards,

    Devin

    Hi justinwheelon,

    If you set that page as your home page and remove the header/footer by making it a blank page that should give you a pretty simple wall to hide the rest of the site while its in development.

    Regards,

    Devin

    There could be a plugin conflict with the theme and an active plugin. You can try disabling all active plugins and then exiting your browser then trying to work on a page again.

    Other than that the typical workflow for creating a page with the advanced layout editor is something like this: https://vimeo.com/channels/aviathemes/64927358

    Regards,

    Devin

    in reply to: Editing the error 404 page #123076

    Hi mindspin,

    For those pages, you need to edit the 404.php file directly in the theme files. The other error pages I believe can be created and edited in the same way.

    Regards,

    Devin

    in reply to: Color section #122572

    It could have been a bug fixed in 1.5 since you are still using Enfold version 1.3.1 thought as formateins it isn’t easily replicated using a separate default installation.

    in reply to: Optimize Enfold Responsive Theme (Speed) #123157

    Hi Suicide Rescue,

    display: none only removes content from the view of the user and causes the computer to ignore it but doesn’t actually prevent it from loading. So if the layerslider is slowing down the page load (which it is) you will get the biggest performance boost from shrinking those big background images.

    Try a tool like: http://www.smushit.com/ysmush.it/

    Regards,

    Devin

    in reply to: Issue with Child Theme #122423

    Thank you for pointing that out! Its actually a really quick simple fix that just needed to be called to our attention :)

    In the main enfold functions.php the child theme style just needs to be moved to the end of the list. So look for:

    //register styles
    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( 'avia-style');
    }

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    and move the style.css below the rest so it gets called after:

    //register styles

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( 'avia-style');
    }

    Just tested on my demo that I use for the videos and I’ve pushed the change to the theme git for the next release.

    Regards,

    Devin

    in reply to: Shortcode in Avia builder #122977

    The advanced layout editor is just a front end for using the theme shortcodes. So you can use the same layout elements with shortcodes to get a basic layout for that specific page.

    You could also (since you already have debug mode active) copy the shortcodes that are generated by the editor and paste them into the visual editor.

    Regards,

    Devin

    in reply to: Hide Menu Items #123087

    Hi Daniel,

    The one you linked uses conditional tags so make sure you are using correct syntax and code. You can try switching to one of the default wordpress themes and see if it works there as well.

    Regards,

    Devin

    in reply to: Slideshow Option doesn't appear #122585

    Glad we could help :)

    Just make a new topic if you have any other questions or issues.

    Regards,

    Devin

    in reply to: Copyright socket adjustment #123136

    Hi allegrabillings,

    When you add the date in make sure you respect the php tags. Just adding in <?php some-code ?> while already inside open php tags would definitely cause issues.

    You can also just edit this line instead of trying to replace the variable if its something you don’t want to change in the theme options:

    <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

    Regards,

    Devin

    in reply to: Shortcodes not appearing #123101

    Hi kcharity,

    In the Advanced Layout Editor’s Texbox the shortcodes are limited to what will work within that text box.

    In the regular visual editor however there should be all available shortcodes (layout elements, media elements etc). First make sure you have the most recent version of the theme files installed which I believe is 1.5.1 right now. Second, disable any active plugins you have running including drop-ins like Jetpack to make sure there isn’t a conflict with the theme.

    Regards,

    Devin

    in reply to: Problems with Products with WooCommerce #123118

    Hi laoz80,

    Try removing the “recently view products” widget from your shop sidebar. I believe there was or is a bug with that widget and the single products.

    Regards,

    Devin

    Glad you found the issue :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    in reply to: Theme does´nt work #123117

    Hi Nobby19,

    My guess is that your local server isn’t configured correctly. The theme by default definitely does work as can be seen in my setup video here: https://vimeo.com/channels/aviathemes/64927356

    I would suggest looking over your MAMP settings and making sure it has at 128mb of php memory, plenty of responsive time and at least the other bare minimums for WordPress to run.

    Regards,

    Devin

    I don’t know what you mean by category. I think the terminology breakdown is just not accurately describing the difference in the set up.

    If you have a working solution, its most likely the intended way to structure the mega menu though without seeing it first hand I can’t say for sure. Either way, as long as its working the way you’d like it should be okay.

    Regards,

    Devin

    in reply to: Can we move or expand the Search Bar? #122501

    Hi Nicolas,

    I think your best option to get that kind of layout would be to modify the header.php file and insert a get_search_form inside a new div. Either way it will require a good bit of css customization to keep everything responsive and the layout intact.

    See: http://codex.wordpress.org/Function_Reference/get_search_form

    Regards,

    Devin

    in reply to: Woocommerce Category Slideshow #123204

    Hi andreas,

    You would need to customize the WooCommerce implementation either through hooks/filters and functions or by re-doing the category pages via templates.

    As far as I know the category description field doesn’t support shortcodes though you could try it to double check, But as is, there isn’t a way through the theme options to do that.

    Regards,

    Devin

    in reply to: Is there an update to Enfold 1.3.1? #123122

    Hi dylandibona,

    The version on Themeforest right now is 1.5.1 I believe. If you have 1.3.1, re-download the whole package and check the version.txt file to see what the latest entry is.

    Regards,

    Devin

    in reply to: Breadcrumbs Issue #123065

    On the topic of shortening the breadcrumbs, no not at the moment. It would need to be done as a rewrite of the breadcrumb function since I’ve never seen any kind of implementation like that before.

    Regards,

    Devin

    in reply to: Sidebar on mobile screen size not appearing #122892

    Glad we could help :)

    Let us know if you have any other questions or issues.

    in reply to: Change Styles Pull Out Menu #122070

    Hi Vivian,

    That is not part of the theme. Its just a tool Kriesi has on his demo sites to help show the flexibility that can be achieved using the theme options.

    Regards,

    Devin

    Glad Ismale could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

Viewing 30 posts - 7,951 through 7,980 (of 8,514 total)