Forum Replies Created

Viewing 30 posts - 7,051 through 7,080 (of 8,514 total)
  • Author
    Posts
  • in reply to: Updating and overwriting custom page templates #131958

    Hi Jeff,

    Right now the templates are very minimal in their usage. They aren’t available for editing and then re-deploying after you’e used the template on another page but hopefully Kriesi will be able to add more in depth template editing functionality in the future.

    So for now, if you create a template and then save it you aren’t able to then edit that template later.

    Regards,

    Devin

    Hi vinko

    You should be using return inside the function. Example:

    // Add Shortcode
    function my_custom_shortcode() {

    // Code
    return 'example';
    }
    add_shortcode( 'example', 'my_custom_shortcode' );

    Which should work correctly. Another example but with enclosing:

    // Add Shortcode
    function bold_text_shortcode( $atts , $content = null ) {

    // Code
    return '<strong>' . $content . '</strong>';

    }
    add_shortcode( 'b', 'bold_text_shortcode' );

    Regards,

    Devin

    in reply to: Incomplete Features image in single post #131893

    Hi Sparkwoodand21,

    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:

    #top.single-post .fullsize .template-blog .blog-meta {
    width: 180px;
    }

    Let us know if you run into any issues, I’m not sure why that is getting the smaller value as the css looks recently updated in the theme and it may have been a fix for something else that is unintentionally causing this issue.

    The above css will only target the single post pages so it shouldn’t cause any other issues but just let us know if it does at all :)

    Regards,

    Devin

    Hi tasoskouk

    Your images should all be larger than 450×450 pixels for them to be cropped at the same height. For example, this image: http://tasoskoukouvitis.com/enfold/wp-content/uploads/2012/12/KitchenAid-Espresso-Machine-1.jpg is 391x530px. So when it gets cropped down to 450×450 it only crops the one edge because the other is already smaller than that size.

    Then in the column view the images get scaled down to fit the column number but the width is smaller than the others so it actually uses more height to get the image to fill that whole width.

    What I usually recommend is that you put all of your product images on a white background in an image editor and position them in the center. Then save all of your images at the same large size so that you are always working with the same size canvas and wordpress can manipulate the thumbnails as needed but it will all always be the same.

    If not that way then just for the images that are non-standard like the mixer.

    Regards,

    Devin

    in reply to: Saving theme options fail every time #131902

    Hi Ali,

    What is the error you are getting with the Slider? It sounds like another plugin conflict since javascript/jquery errors usually come from those but seeing it live or getting a bit more information would help.

    As for Jetpack, yes unfortunately Jetpack just doesn’t play nice with some themes. The amount of plugins that it can add in in addition to itself means we can’t just test for Jetpack but would also need to test for all those things Jetpack can add in.

    Regards,

    Devin

    in reply to: Slideshow Problem #130487

    Hi col323webdesign,

    Ismael is tagged on the topic but just in case he didn’t receive the credentials you may want to send them again :)

    Regards,

    Devin

    in reply to: How to add a javascript tag #132051

    Hi constantinums,

    I’m not really sure what you mean. You can add javascript through normal wp enque methods: http://codex.wordpress.org/Function_Reference/wp_enqueue_script

    Or you can add code to the Text tab of the regular visual editor but at the moment there isn’t a catch all code element for the advanced layout editor if that is what you had in mind.

    Regards,

    Devin

    in reply to: iPhone Portrait Issue #131867

    None that I know of that is “standard”. iOS has their own specification as do some other browsers but the last time I checked there wasn’t a true net wide standard.

    in reply to: Layer Slider not showing up #132001

    Hi 416bc,

    For some reason all of the theme css is loading in the footer instead of the head of your page. If you have a plugin installed for performance, caching or anything that allows you to change where css gets loaded it needs to go in the header in order for the page to render correctly.

    Otherwise the page loads the html and *then* gets styled so the user has a brief glimpse of raw html without styling.

    Regards,

    Devin

    in reply to: search.php / search results page sidebar #131650

    Hi finchkelsey,

    You can create a new sidebar via a function (http://codex.wordpress.org/Function_Reference/register_sidebar) and then change the http://codex.wordpress.org/Function_Reference/get_sidebar function in the search.php file to point at your new specific sidebar.

    Regards,

    Devin

    in reply to: Advanced Layout Builder Not Working #131764

    Let us know if removing the duplicate LayerSlider plugin and updating the theme files works for you.

    in reply to: Page with a post runs up #131500

    Hi Dobrodukh,

    That is the intended way the toggle function works and as far as I know most toggles work in the same way (since its all using the jquery ui bundled with wordpress).

    Regards,

    Devin

    Hi wrosh,

    Unfortunately I don’t this is possible at the moment. Peter mentioned that the typical function doesn’t work on custom post types because of a bug in wordpress core: https://kriesi.at/support/topic/can-i-use-the-navigation-arrows-for-each-category-not-all#post-121982

    Regards,

    Devin

    in reply to: 2 part custom heading question #131722

    Hi stunna42,

    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:

    h6 {
    font-size: 28px;
    text-transform: none;
    background: rgba(255, 255, 255, 0.7);
    }

    For the special heading, you could force a margin before it with:

    .av-special-heading{
    margin-top: 20px !important;
    }

    But there isn’t a setting within the shortcode itself.

    Regards,

    Devin

    in reply to: How to Add Pagination #131863

    Hi jjranson,

    The theme doesn’t have any built in pagination functionality but I’m sure there is a plugin out there somewhere that will be able to add that kind of thing in either with a shortcode or with something else.

    You may even find that using regular blog posts and set the post type to link would work for you since then you could get the theme based pagination on the blog element.

    Regards,

    Devin

    in reply to: iPhone Portrait Issue #131865

    Hi Marssolutions,

    I don’t have a iphone 5 to test specifically on but with that resolution set and my regular mobile I’m not having any issues with the content getting cut off.

    I’ll tag the topic for Kriesi however as I believe he is the only one of us that uses iOS phones.

    Regards,

    Devin

    in reply to: Sticky Fixed title & breadcrumb? #131817

    Hi Rich,

    Not with just css no. There is also some javascript that goes into keep it fixed without causing other issues. It will also need to be pulled to the front with the proper z-index most likely and then some bug testing for cross browser compatibility and responsiveness.

    Your best route would be a freelance developer who can take care of everything within a few hours and put everything into a child theme or well commented custom.css css and minor modifications to the avia.js file.

    Regards,

    Devin

    in reply to: Contact form not working—have tried everything! #131845

    Hi alexmasica,

    Are you using an email for your wordpress admin and the form that is based on your domain? Many hosts now have blocks in place to prevent sending out emails from the host that aren’t domain hosted email.

    Regards,

    Devin

    in reply to: LayerSlider widget not available #130717

    Glad Ismael could help :)

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

    Regards,

    Devin

    in reply to: Tab URL Name #131840

    Hi joe88,

    If you add that line to your functions.php file then the new field will become available on your tabs and toggles. It just needs to be:

    add_theme_support('avia_template_builder_custom_tab_toogle_id');

    You can add it right after:

    /*adds support for the new avia sidebar manager*/
    add_theme_support('avia_sidebar_manager');

    Regards,

    Devin

    in reply to: Home page buttons #131724

    Hi

    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:

    @media only screen and (min-width: 1140px){

    #top.home #after_full_slider_1 .container,
    #top.home #after_full_slider_1 .container .twelve.units {
    width: 100%;
    }
    }

    This should get you part of the way there depending on the full effect you want. The media query makes it only effect screen sizes larger than 1140px and will increase the container of those units.

    Regards,

    Devin

    in reply to: Help! #131626

    If the host isn’t letting you increase it then there isn’t anything you could do on your end to force it. Unless you mean that they wont do it for you and you must do it.

    If they don’t allow it then I would strongly suggest going with any other host just about anywhere. 40mb is simply not enough anymore even if it is the bare minimum wordpress will run on. Some great alternatives that I have used are Dreamhost, Bluehost, MediaTemplate or you can try any of them listed here http://wordpress.org/hosting/.

    in reply to: Enfold Showcase #116495

    I love the big full screen slider as a fake footer Gstar72! Brilliant idea and has a fantastic effect :)

    Great job Tim! Glad you are enjoying the theme so much :)

    in reply to: Since recent update – 2- Issues #131616

    Hi imoutsidethebox2,

    As far as I know all color settings for WooCommerce are handled by the theme.

    Regards,

    Devin

    in reply to: Flat Button Rollover #131287

    This is what you should be seeing if you’ve updated the theme to 1.8+ and added in the function correctly to your functions.php file:

    b4yxx5.png

    If you re-uploaded 1.8 but didn’t re-add in that function then it wouldn’t show up.

    in reply to: Advanced layerslider thumbnail navigation #131591

    Hi Wild-Speed,

    Unfortunately not at the moment as far as I know. The effect is built into the LayerSlider plugin and would need to be modified on their end for best results (the plugin is a third party one Kriesi has a license to include it built in).

    Regards,

    Devin

    in reply to: Re layout.css modification a novice ? #131864

    Hi aribann,

    Yes definitely! With Enfold and most premium themes you can add simple css changes like you have above to the Quick CSS field. If you start to get a bit more in depth with your css changes you can add them to the custom.css file which gives you a more typical setup for how css is loaded into themes and websites.

    We even have a couple of media queries in the custom.css file so you can add different css that will load on only desktops or only tablet and below size screens.

    Regards,

    Devin

    Let us know and we can then try to find out what the issue is.

    Regards,

    Devin

    in reply to: Color Section Image gets clipped #131765

    Hi BillBarenCoaching,

    We would need to see your site live and inspect the code to find out what the issue is. The thread you linked has nothing to do with basic color section background images and is only needed right now if there is already a background image added from the themes styling options.

    If you want an image to show up in a color section it needs to have content in it (a color section doesn’t have a default height). You can also choose to have a background image stretch to fill the background area when you are in the pop up for that element in your advanced layout editor.

    Regards,

    Devin

    in reply to: 3rd Sample Slider from ThemeForest Demo? #131820

    Hi iceblackbox,

    Unfortunately we aren’t able to. The images are not open for distribution so can’t be included in the demo data or shared.

    Regards,

    Devin

Viewing 30 posts - 7,051 through 7,080 (of 8,514 total)