Forum Replies Created

Viewing 30 posts - 5,671 through 5,700 (of 8,514 total)
  • Author
    Posts
  • in reply to: Iconbox link #166336

    Glad that worked for you! We are working on trying to get a new FAQ up, guides, tutorials etc but this theme is *too* popular and we are super busy with support recently.

    We get double posts, bumps etc all the time and until we actually explain how it works no one would be able to know anyhow so no worries :)

    Regards,

    Devin

    in reply to: Enfold and my SSL Certificate (Browser SSL Indicator Issue) #166334

    Hi!

    You can generally use this plugin to force all things to run through your ssl cert: http://wordpress.org/plugins/force-ssl-everywhere/

    Cheers!
    Devin

    in reply to: Issues with Safari browser #166331

    I’ll gladly log in and take a look. I understand how you may look at it as a theme issue but if it was, it would or at least should be manifesting itself with any of the other 9k people who have purchased and are using the theme.

    You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn’t grab it :)

    in reply to: Dummy Data not importing #166285

    I’ll need to log in and take a look at the site live. If you can create a temporary admin account for me we can dig a bit deeper.

    You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn’t grab it :)

    in reply to: HTML Templates of Enfold #166271

    Hello Hanniball!

    No, there are no HTML templates of any of the theme files. You could create the pages form wordpress and then copy the source of those pages onto a static html page and include it into the theme folder however.

    Best regards,
    Devin

    in reply to: Iconbox link form the icon not just the heading text #166269

    Same topic answered/addressed here: https://kriesi.at/support/topic/iconbox-link/#post-166268

    I’ll close this one for now since its duplicated.

    Regards,

    Devin

    in reply to: Iconbox link #166268

    Hello!

    Since this topic already has a partial response I’ll continue it here. You can include and overwrite the shortcode by adding a function like this in addition to the file:

    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;
    }

    So you’ll create a shortcodes folder in your child theme and then put the altered file in that folder and the function above will then recognize that folder and its contents.

    See Dude’s explanation here as well: https://kriesi.at/support/topic/portfolio-meta/#post-130512

    Regards,
    Devin

    in reply to: Stop IconBox overlap in sidebar #166265

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

    in reply to: Enfold Theme, Additions, Suggestions #166261

    Hey Gary,

    Its the sticky at the top of Enfold forum here: https://kriesi.at/support/forum/enfold/ => https://kriesi.at/support/topic/enfold-feature-requests/

    Regards,
    Devin

    in reply to: Can I Remove CAPTCHA from Shop page login box? #166252

    Hello uattah!

    That is not a theme function. You most likely have a plugin that has captcha’s turned on for user login.

    The same goes for user registration, the theme doesn’t have any elements to support it but you can use a plugin or the Woocommerce login page which should have a register-account option.

    Cheers!
    Devin

    in reply to: Problems in IE8 #166250

    Hey Dave,

    You’ll need to upgrade your version of Enfold to the most recent version available. WordPress 3.6 means you must be using Enfold 2.0+ to keep all the theme functions and scripts working properly.

    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

    After you’ve installed 2.2 you can update the theme from within WordPress.

    Cheers!
    Devin

    in reply to: Photos requirements #166249

    Hi malkoin!

    Your images should be as big or bigger than the largest possible size you want to use. If you want to use the fullscreen slider then you should get images that are 1920px wide and whatever height you want to use (but generally 600px or so tall).

    Regards,
    Devin

    in reply to: Logo problem within Citrix / IE8.0 #166247

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

    in reply to: Comment icon replacement #166245

    Hey ubercool!

    The placeholder icons are only there if you don’t have featured images on your posts. So you can add your own “icon” type image as needed.

    Best regards,
    Devin

    in reply to: Table builder – Button Row #166244

    Hey yukanl!

    I’m not sure what you would use the buttons for if they were not links but you can just use a # symbol instead of a url.

    Regards,
    Devin

    in reply to: Theme busted after WP upgrade #166157

    Hey!

    Just an FYI our queue goes by oldest posted response/post to newest. Each time you self bump it actually pushes your post to the end of our Queue.

    I happened to be scanning over the recent posts just now and saw this but generally if you had not self-bumped we would have responded yesterday.

    For your issues, the testimonials is designed to do this. This isn’t a bug but just the way the testimonials work. The container adjusts to the height of the content inside. You can add other content below the page or on the sides of it to prevent it from changing the page height if you don’t want this to happen.

    The scrollbar issue should be fixed by adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    
    #wrap_all {
    overflow: hidden;
    }

    I’m not getting the icon issue in IE but from what I’ve seen IE has sporadic issues on individual users end where it won’t display the icon font. It either clears itself up or is cleared up with re-installing the theme files. Still not sure why it effects some users but not others.

    Best regards,
    Devin

    in reply to: Color section pushing sidebar down #166128

    Hello!

    Just to build on Yigit’s comment, you can have a LayerSlider at any point in a page but it will always be full width. I think that is what he meant.

    Since the original topic question has been solved by Jappie already I’ll go ahead and close the topic. If you have any other questions its always best to post a link to the site so we have a reference point and hopefully we can assist :)

    Cheers!
    Devin

    in reply to: Enfold Image Overlay Opacity with CSS #166121

    Hey Chris!

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    
    .image-overlay:hover {
        opacity: 1 !important;
    }

    Best regards,
    Devin

    in reply to: Theme update without child theme #165964

    Hello stevemulisa!

    The only things that get changed are the actual theme files. So any .php, .js or .css file that comes with the theme download. Any theme settings (done in the WordPress admin) are safe.

    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

    Cheers!
    Devin

    in reply to: do not display element in mobile view #165962

    Hello!

    That is actually available! You can enable the custom class field by adding the following to your functions.php file:

    
    add_theme_support('avia_template_builder_custom_css');
    

    Then just add your own .mobile-hidden class to your custom.css or quick css and add it to any element you want to hide.

    Regards,
    Devin

    in reply to: 404 Error Page #165961

    Hey!

    Yes, that is how to do it. If you aren’t using a child theme then I would suggest making a personal changelog or version file for your own records which lists all of the changes you’ve made to the theme files directly so that you an easily re-apply those changes after theme updates.

    Best regards,
    Devin

    in reply to: Changelog for Version 2.2 #165960

    Hey 4ages!

    If you download the full theme folder/docs/psd package from your downloads on themeforest you’ll get the version.txt file which includes all file changes:

    
    2013 September 18 - Version 2.2
    
    - style.css - new version number
    - css/shortcodes.css - fixed a bug with .avia_start_animation elements causing fixed BG images to shift  
    - css/dynamic.css - adds a few new stylings for the forum  
    - css/bace.css - fixed a bug with firefox and linked images  
    - css/layout.css - added a few styles for various improvements mentioned bellow
    - footer.php - changed arguments of wp nav menu to work better with non-latin languages
    - header - changed arguments of wp nav menu to work better with non-latin languages
    - 404.php - added action that allows you to perform actions like notification to the blog owner if a page is missing
    - functions-enfold.php - removed buggy post nav from forum
    - includes/related-posts.pgp - added additional hooks and config options for different styling possibilities
    - js/avia.js - better detection on when to use the mobile menu
    - js/shortcodes.js - fixed a problem with easyslider, logoslider and content slider in IE 9 + 10
    - archive.php and taxonomy-portfolio_entries.php - added term descriptions
    - includes/admin/register-admin-options.php 
    	- you can now disable the dummy content import button by adding this to functions.php: add_theme_support('avia_disable_dummy_import')
    	- added option to disable search icon in main menu
    
    - folder config-woocommerce:
    	- fixed several small issues
    
    - folder config-templatebuilder:
    	- improved: template builder now works with revisions
    	- improved: portfolio layout if no images are selected
    	- added: missing translation strings for visual editor
    	- fixed: toggle active class bug
    	- added: filter for lightbox size
    	- fixed: content slider typo
    	- fixed: bug in firefox with absolute positioned elements within tables
    
    - folder config-bbpress:
    	- improved: lots of small styling improvements to the forum
    
    - folder framework:
    	- update to the newest version
    	- fixed contact form subject guessing code
    	- improved checkbox display and handling in backend
    	- added filter to default fallback menu to add additional items
    
    -folder lang:
    	- added first version for Danish, Spanish, French, Japanese, Russian, Swedish and Dutch
    

    Best regards,
    Devin

    in reply to: Enfold 2.2 Upgrade – Logo and Bottom Navigation issue #165955

    Great! Glad that worked for you and hopefully you can remove the fix with the next update.

    Regards,

    Devin

    in reply to: Allowing images to float above and not confine. #165954

    Hello!

    You would need to make each image positioned absolutely and then position them outside of that. Its an odd css issue which is really going to take a bit of trial and error.

    A good source for getting it exactly as you want it is StackOverflow but customizing the layout and the css needed for it is a good but beyond what we can assist with via support as, since i mentioned before, will take a lot of trial and error and getting it customized to how you want.

    Regards,
    Devin

    in reply to: Enfold Child: Links to Text on Same Page #165952

    You would want to put them inside a color section and give that color section a custom ID using the field for it. Then link to that anchor on the page.

    I’m still getting no access to the page so I apologize if this is the way you are already setting up the page.

    in reply to: Styles tab not working child theme. #165951

    Try checking with your hosting provider and see if they can assist in just checking the permissions for the css files in the avia uploads folder in your uploads. I’ve seen this happen before when the child theme gets a weird admin/super user permissions so its worth a quick check.

    in reply to: How can I customise the rollover arrow on enfold theme #165949

    Hey toshism!

    Sure, you can use the :before pseudo element with the image you want to use in it content. See: http://coding.smashingmagazine.com/2011/07/13/learning-to-use-the-before-and-after-pseudo-elements-in-css/

    Regards,
    Devin

    in reply to: Search is not showing relevants results #165946

    Hi infoportugal!

    The search function is only using the default WordPress search hook so any inaccuracies or poor performance is unfortunately out of our hands to address.

    Cheers!
    Devin

    in reply to: Portfolio 1 column #165944

    Hi DavyE!

    They will be in place in the next release. So if you can wait a week or so you’ll get the option :)

    Regards,
    Devin

    in reply to: Enfold 2.2 Upgrade – Logo and Bottom Navigation issue #165943

    Looks like this may be a bug in 2.2. For now you can fix it with:

    .logo, .logo img {
        width: auto !important;
    }
    

    Should get fixed in 2.3 hopefully.

    Regards,

    Devin

Viewing 30 posts - 5,671 through 5,700 (of 8,514 total)