Forum Replies Created

Viewing 30 posts - 4,591 through 4,620 (of 8,514 total)
  • Author
    Posts
  • in reply to: Repositioning Woocommerce Single Product Page Divs #196338

    Hi rednovaMeUp!

    I’m not sure if simple copying over the same file structure will work in a child theme in this case but you can try it. The config-woocommerce>config.php file has the functions which wrap the images and product content in the grid wrappers. They are right around lines 898 to 928.

    You may be able to just do a remove_action on the two functions and then add your own it just depends on exactly how you want the end result to look.

    Best regards,
    Devin

    Glad its working for you now . Let us know if you have any other questions or issues.

    in reply to: Issues with IPAD (apple) and Enfold. #196214

    Hey!

    I had no issues on my end when testing with an ipad with either the forms or the social icons.

    Best regards,
    Devin

    in reply to: Please let me know: I am officially lost! #195976

    Hey Jae!

    If they are jpegs you can use: http://www.jpegmini.com/
    Or for PNG files use: https://tinypng.com/

    The goal is to shrink the file size without losing quality or reducing the pixel dimensions.

    Best regards,
    Devin

    in reply to: no want zoom in or zoom out in ipad #195961

    Hey xpoveda!

    You need to set the Theme to one of the responsive layouts in the Theme Options>General Settings:

    Regards,
    Devin

    in reply to: Change name or don't use dynamic_avia/enfold_child.css file #195959

    You would add it to your functions.php. This is the default location for any additional php that you would add to a WordPress theme or WordPress child theme.

    See: http://codex.wordpress.org/Functions_File_Explained

    Hi fsatechnology!

    It sounds like you may have the WordPress>Settings>Reading>Blog pages show at most option set to 1 post. This effects your blog feed, archives and search result post count:

    You can increase that number to have more search results.

    Best regards,
    Devin

    in reply to: Where is the list of shortcode codes? #195953

    The visual editor is the name for the default WordPress editor. If you are talking about when in a text element in the Advanced Layout Builder (where you can drag and drop theme elements to create layouts) then the shortcodes are limited to those supported inside a text element.

    If you have not already watched it, I go over all of the layout elements in this video: https://vimeo.com/channels/aviathemes/64927359

    And create a quick layout in this video: https://vimeo.com/channels/aviathemes/64927358

    • This reply was modified 11 years, 7 months ago by Devin.
    in reply to: Multiple blog grids in single page, issue with pagination #195951

    Hi Sophabed!

    I don’t think its possible to limit paging to a single element on a page with the way those shortcodes are set. Since it isn’t a ajax call just to that single query it effects the whole page.

    Best regards,
    Devin

    in reply to: Insert Default WordPress ShortCodes within Advanced Editor #195950

    It seems like there is a misunderstanding of the root issue. There should be no reason why you would need to wrap regular shortcodes inside php if all you are trying to do is add in shortcodes.

    What do you mean by default shortcodes and in what instance is it not working specifically?

    Portfolio shortcodes have no support being nested inside any other element except columns/color sections so if that is the end goal we wouldn’t be able to help with that. Same with color sections and Layer Slider elements.

    in reply to: Blog page format #195947

    Hi @netchoice,

    Please create a new topic for your question so that we don’t derail the current topic/issue.

    in reply to: problem migrating from localhost to the server #195946
    This reply has been marked as private.
    in reply to: multilanguage footer #195945

    Yes, we do support WPML integration but we aren’t WPML so I can’t even say if that is possible or not with just the plugin. You can check with the WPML documentation to see if you can have different widgets for different languages or something like that.

    in reply to: Change name or don't use dynamic_avia/enfold_child.css file #195920

    Hi Helgi!

    You can use this function to do that:

    
    add_filter('avia_dyn_stylesheet_file_path', 'avia_change_filename');
    function avia_change_filename($stylesheet){
    return 'myfilename.css';
    }
    

    Best regards,
    Devin

    in reply to: Shortcodes #195919

    Hey!

    My guess would be your local server isn’t configured correctly. If you have a live test environment to install WordPress on and test you can then try and duplicate the server settings locally which allow for it to work correctly.

    Without seeing an issue live there is very little we can do beyond this however since under normal circumstances the shortcodes should work without issue.

    Cheers!
    Devin

    Hey vchemko!

    We’ll need to see an example of what you are trying to do with a screenshot or mock up as well as a live version of what you have now. I’m not clear on what it is you are trying to accomplish fully so just a bit more information and a visual will hopefully clear things up.

    From there we’ll see if its something we can help with and if not point you to where you can get additional help with customization beyond what we can do through support.

    Cheers!
    Devin

    in reply to: How to subscribe to beta release channel #195861

    Hey richardhowes!

    That isn’t possible with the version included in the theme. We don’t modify the documentation or notices within the plugin but automatic updates and beta versions aren’t supported for the included version.

    Cheers!
    Devin

    in reply to: IE8 slider responsive but not content #195794

    Hey Paul!

    We’ve asked Kriesi to take a look and give it a proper top down fix if needed. We get so few users of the fixed width option at this point that there are still some cases where things aren’t quite working as intended.

    If you can create a temporary admin account and post the details as a private reply we can try and get it sorted out for your installation asap.

    Best regards,
    Devin

    in reply to: Where is the list of shortcode codes? #195652

    If you don’t see:

    then you should disable all active plugins to make sure there are no conflicts with the theme.

    There are definitely going to be difference with this theme and others. The Advanced Layout Editor is not available in any other theme available so there is no comparison there. Others may do the drag and drop style interface differently but differences are intentional here and so far have worked for the best.

    in reply to: Moving away from Enfold #195650

    It will be quite a bit more complicated than that unfortunately. As WordPress the community has gotten smarter so have the high end themes. So in this case you are working with classes and extending classes to go beyond the basic WordPress shortcode output.

    Off hand I couldn’t even give a good description of how to pull everything out into a shortocde but given a few hours and full access to the theme files a good developer should be able to get you set to re-create the shortcodes in a way that will output them and ready for css clean up.

    Basically going through and looking at the function shortcode_handler attributes then creating a shortcode to follow suit and adding it in is how I would do it. You could try it the other way around and include the aviaShortCodeTemplate class and the avia-shortcodes though I don’t have as much experience with oop with php.

    in reply to: How to place 3 images that are links in one row? #195638

    Hi Premanjali2!

    You can use the Advanced Layout Builder by clicking on the blue Advanced Layout Editor button just above the regular visual editor on a page. Then use 3 column elements with the image elements inside those columns.

    For a quick overview on using the Advanced Layout Builder see: https://vimeo.com/channels/aviathemes/64927358

    Best regards,
    Devin

    in reply to: Where is the list of shortcode codes? #195637

    Hi efishinsea!

    There is no single list of shortcodes available since there are so many possible configurations for them and the advanced layout editor or shortcode dropdown (magic wand) should be used instead of trying to write them out manually.

    When you are in the advanced layout editor the shortcodes available from the magic wand icon are limited to those that can be nested inside a text element.

    The Advanced Layout Builder and the visual editor are two separate entities so when you switch back and forth you don’t see the output of one in the other. This is on purpose to prevent a single mis-type or single character error from breaking an entire layout.

    Best regards,
    Devin

    Hi crmo!

    The LayerSlider is just for LayerSliders. You don’t need any other plugin or the LayerSlider plugin installed at all as one comes bundled with the theme.

    You can add in other gallery types using shortcodes or the Advanced Layout Builder: https://vimeo.com/channels/aviathemes/64927358

    Regards,
    Devin

    in reply to: Getting Masonry Portfolio Results That Look Like Theme Demo #195634

    Hi!

    The link you have there is exactly how it should work. Though you should be using a featured image so that the image is shown in the masonry output.

    Best regards,
    Devin

    in reply to: Masonry Gallery Usage outside of 'pages' #195633

    Hey DavidMiles!

    Do you mean you want to use your custom post type in a masonry element or you want to include a masonry element inside a page of your custom post type?

    Regards,
    Devin

    in reply to: Restoring Original Theme Pages #195617

    The root of your issues is probably that you are using Enfold version 1.9 on that installation. The icon font manager wasn’t added until 2.3 I think it was and 1.9 isn’t even compatible with WordPress 3.6+.

    So re-download the theme files from ThemeForest and re-install the parent Enfold theme from scratch to bring it all up to date.

    in reply to: Enfold: lost custom css (?) #195615

    Hey!

    The Custom CSS highlighted there is not part of the theme. My guess is that is from a plugin.

    Cheers!
    Devin

    in reply to: custom css lost #195614

    Hi dalcnetsrl,

    Unfortunately there is nothing that we can do to restore anything on your server. Your best route to try and get a restoration would be to talk to your hosting provider and see if they have snapshots or can assist with whatever method you had previously used to backup.

    Cheers!
    Devin

    in reply to: Moving away from Enfold #195613

    Hi Ken!

    That would be the best way to do it. We will eventually roll out a plugin to port the shortcodes to have some support for secondary use but for right now we don’t have anything available to make the transition easier.

    Regards,
    Devin

    Glad you were able to get it sorted out!

    Generally this kind of customization is far beyond what we can do via support since it can lead to cross browser fixes as well as additional responsive fixes needed but Josue went beyond the norm for you :)

Viewing 30 posts - 4,591 through 4,620 (of 8,514 total)