Forum Replies Created

Viewing 30 posts - 5,641 through 5,670 (of 8,514 total)
  • Author
    Posts
  • in reply to: Parallax does not work on iPad. #167916

    Hey!

    As far as I know it isn’t fully support for iPads at this time. Its supposed to degrade and just display as a static image.

    Best regards,
    Devin

    in reply to: visual editor strips third-party shortcode #167915

    Hello!

    What may be happening is the shortcodes for that plugin are set in a way where WordPress doesn’t recognize it as regular text content and sees it as code. I really have no idea why some shortcodes do this and others don’t but its just something I’ve noticed from time to time on client sites using various plugins.

    If this is the case what you will probably need to do is edit those text blocks using only the text tab. Save while on the text tab, edit using it and generally not switching back to the visual editor tab since WordPress will then strip it.

    Best regards,
    Devin

    in reply to: Layerslider WP seems to be self replicating !! Help #167913

    Hello Sparky68!

    Do you have any other plugins installed? Do you have the LayerSlider plugin installed by itself already (the theme comes with its own version that isn’t visible from your plugins area).

    Cheers!
    Devin

    in reply to: Override files in Framework folder with child theme #167385

    Hello Dan!

    With a child theme, you can replace basic files and they will automatically be used instead. With the framework it isn’t quite as simple. The easiest and most problem free way would be to just edit the parent theme.

    Otherwise you’ll need to have the child theme’s functions.php file replace all of the parents functions and then include the framework in the child. At that point I’ve found its just as much hassle to update the second set of framework files as it is to just keep a backup of the changes to the parent and re-apply after an update.

    Regards,
    Devin

    in reply to: Password Protection for Specific Pages #167384

    Glad we could help. Let us know if you have any other questions or issues.

    in reply to: Enfold Infographics #167379

    Hey andypeck!

    Kriesi is the second highest selling theme author on ThemeForest. Enfold is the most successful theme he has created to date with over 10k sales right now. So with a swagger of arrogance on his part I would say Kriesi has a good handle on what is popular :)

    That being said, there are already a lot of these effects in place within the theme (image animations, hover effects etc) and if you wanted to build on them you could do just as hes done with the current kriesi.at child theme.

    Regards,
    Devin

    in reply to: Icon Box Problem #167373

    Hello faterra!

    What do you have for the actual title content for those items? It looks like you may have a secondary h3 element with a span style on it in place of trying to style them from outside css. With chrome, its getting ignored (the double h3) but with the other browsers they are rending 2 h3 elements one on top of the other.

    So the icon and icon title are correct but the title inside is not correctly aligned.

    Best regards,
    Devin

    in reply to: Avia Layout Builder Problems #167369

    Hello!

    Instead of letting the server do it I would recommend just making the page speed modifications yourself with a plugin like wp super cache, w3tc or what Kriesi uses Better WordPress Minify.

    Anything automated like that has a high chance of causing issues on the front end with not only the theme but other premium plugins or scripts you may be running.

    Best regards,
    Devin

    in reply to: Creating new Templates – Where do they reside? #167367

    Hey fshn2day!

    No unfortunately not. Editing that template wouldn’t actually alter any of your pages anyway since the template is only a copy+paste of a specific layout a the time of saving and inserting it.

    Best regards,
    Devin

    in reply to: LOST MY DOWNLOAD: ENFOLD THEME #167365

    Hello Michael!

    No. We have no interaction or access to purchase records with ThemeForest so you’ll need to wait for Envato support to get back to you.

    You may want to try the Envato Support Twitter here: https://twitter.com/envato_support

    Best regards,
    Devin

    in reply to: How to create the circular rollover content #167304

    Hey Tech Dude!

    No, that is custom coded by Kriesi and he’s mentioned for the short term he won’t be releasing any of the customization he’s done to the child theme or any of the custom features for now.

    He may release some how-to’s down the road as blog posts however.

    Best regards,
    Devin

    in reply to: Change child theme name #167301

    Hi unclemurray!

    No, unfortunately not. WordPress saves all of your theme settings based on the folder name of the theme.

    Regards,
    Devin

    in reply to: Adding a custom font #167294

    Sorry we couldn’t help more. I can’t really explain why that specific font wouldn’t be rendering when google fonts typically have no issue.

    in reply to: Non-Fixed Logo Above Fixed Navigation #167293

    Hey Rachel,

    Unfortunately that is even beyond what we can assist with via support.

    The navigation/logo section is set with a combination of css and javascript and separating the logo out and above and then changing the point at which the navigation gets fixed while keeping it all cross browser compatible and responsive is a task which will need a freelance developer to customize for you.

    Regards,
    Devin

    in reply to: any way to change the default height of images in the mobile? #167291

    Hello!

    You can add any html you want to the layer sliders individual slide in the HTML section. It will need much more in depth css to keep it all responsive but that is the best way to just add custom content to the slide.

    Cheers!
    Devin

    Hi!

    Have you tried just using the regular WordPress gallery shortcode and not using the element in the template builder?

    Cheers!
    Devin

    in reply to: Layout Header #167289

    Hello!

    You have this code in your custom.css:

    #megaMenu.megaFullWidth {
    width: 1310px;
    }

    You need to move that inside of the desktop only media query so that it is only applied while a user’s screen size is very large.

    Then add this to the mobile only query so that it only effects your mobile layout:

    .bottom_nav_header.social_header .main_menu, .bottom_nav_header.social_header .main_menu {
    margin-left: 50px;
    }

    Cheers!
    Devin

    in reply to: Issue with Magento/WordPress Integration Plugin by James Kemp #167287

    Hello apoirier!

    I’m not familiar with the plugin but it sounds like a function from it. The best thing to do would be to contact the plugin developer and see if they can assist with what may be happening.

    Best regards,
    Devin

    in reply to: Latest update breaks calendarizeit plugin #167203

    Hello!

    Unfortunately we are really unable to offer support for third party plugins. We have no experience with the plugin or even the code to look through.

    If the developer of the plugin is the best resource in not only identifying the issue but hopefully providing a fix. The two errors identified should help in allowing the developer to find those lines and then to look into a fix. From the sound of it, the bootstrap js file isn’t getting wrapped in a noConflict wrapper. See: http://codex.wordpress.org/Function_Reference/wp_enqueue_script#jQuery_noConflict_Wrappers

    Regards,
    Devin

    Hi bspeice!

    You can just add your own version of shortcodes to the child them in a shortcodes folder. Add this function to your functions.php first:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    Then it will check your child theme shortcodes folder and if there is a shortcode file in there use that instead of the parent.

    Regards,
    Devin

    in reply to: Easy Slider blank until another page visited. #166968

    Hello!

    Without a clear way to re-create it every time there is very little we can do in the way of diagnosing a potential bug. From what it sounds like the content is just not loading in which is typically because of a timeout on the server either with loading a script or loading a(n) image.

    So you could try using very small images and see if that helps or seeing if there are any tweaks you can do either with a caching plugin or a minifying plugin to keep the strain on your server to a minimum.

    Regards,
    Devin

    in reply to: Enfold incompatible with IE 9 & 10? #166957

    Hello!

    Compatibility mode is not default for IE. Its a manual setting or one that IE will revert to under certain circumstances where it thinks the page has an error.

    So for the average IE user they will notice no issues or run into issues with compatibility mode. If they do, then they are already browsing the web in a sub standard method and won’t be able to tell the difference anyhow.

    Regards,
    Devin

    in reply to: IE 8 and 10 problems and youtube icon #166759

    Hi sammysouthall!

    First thing to try is updating your site to the most recent version.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Then try using this plugin to get IE8 to work with media queries: http://wordpress.org/plugins/respondjs/

    Regards,
    Devin

    Hi unclemurray!

    The only error I see is in the source with your caching plugin:
    <!-- WP Super Cache is installed but broken. The constant WPCACHEHOME must be set in the file wp-config.php and point at the WP Super Cache plugin directory. -->

    Best regards,
    Devin

    in reply to: Alternative Mobile Menu? #166708

    Hey bkheld!

    No, the theme doesn’t have anything like that at the moment as far as I know. I’m sure with a bit of searching you could find a plugin that would forward mobile users to a different page of your choice which may work for you.

    Best regards,
    Devin

    in reply to: My portfolio items a broken when not viewed with AJAX #166707

    Hello mgma!

    The only thing I can think of would be to find a plugin that can remove items from search results or to set up forwarding with a plugin so that if someone stumbles on to the single portfolio page it forwards them to the page you want instead.

    Cheers!
    Devin

    in reply to: Questions about thumbnails and featured images. #166706

    Hey!

    I’m not getting a grid on the link provided at all. Is it on a different page now?

    Images are going to scale based on their height and width and how WordPress then scales them for the various thumbnails. If you really want consistent images its best to pre-crop them to all the same dimensions before uploading.

    Cheers!
    Devin

    in reply to: Logo in contact form auto respond message #166705

    Hey jyles_ks!

    You would better off using a plugin than trying to modify the email to render html elements or include images. Otherwise it would need to be done by a freelance developer (unless you are familiar with php and automated email setup).

    Best regards,
    Devin

    in reply to: Dummy Data not importing #166369

    Glad we could help. Let us know if you have any other questions or issues.

    in reply to: Menu too large > overlaps with logo #166342

    Hey!

    Thanks! I’ve asked Kriesi to take a look at the menus before as I don’t like the current possibility of overlaps either .

    Regards,
    Devin

Viewing 30 posts - 5,641 through 5,670 (of 8,514 total)