Forum Replies Created

Viewing 30 posts - 6,271 through 6,300 (of 14,834 total)
  • Author
    Posts
  • in reply to: Catalogue thumbnail resize and reshape? #471003

    Hi Micheal0424!

    You can use this CSS to change their dimensions.

    .av-catalogue-image {
      height: 50px;
      width: 100px;
    }

    For the actual image size look on line 118 in the functions.php file.

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Regards,
    Elliott

    in reply to: Inconsistant text formatting issues in Enfold #471001

    Hey!

    Navigate to Dashboard > Enfold > Advanced Styling and edit the H1, H2, H3 elements. There is an option for “text transform”. Change it from “default” to “none”.

    Cheers!
    Elliott

    in reply to: Avia Layout Builder and Email Problem #470999

    Hey!

    I see the email in your header and footer but it looks fine to me. Send us a link to the exact page where your having the problem with the email links.

    Regards,
    Elliott

    in reply to: Woocommerce problem with slider #470993

    Hi SecretDiamonds!

    I don’t see the slider your referring to. I think what you mean is the post navigation. The two black arrows on either side of the screen that link to the next product, correct?

    If so then add this to your custom CSS to get rid of them.

    .single-product .avia-post-nav { display: none !important; }
    

    Best regards,
    Elliott

    in reply to: Button Customisation #470990

    Hi Simijonovic!

    Create the type of button you would like to use and then right click your page and view source and find the button and copy it’s HTML. Paste the HTML inside a codeblock element in your page and change the ID to “glf-restaurant-order-online” or whatever the script requires you to use.

    Best regards,
    Elliott

    Hey gearouthere!

    It’s probably a plugin your using. Deactivate them all and reactivate them one by one to see which one is causing the issue.

    Also, it looks like you have done lots of editing so I could not figure out which version of Enfold your using. If it’s not the latest version, 3.2.2, then be sure to update.

    Regards,
    Elliott

    in reply to: Portfolio Post tags #470983

    Hi!

    Your probably using the advanced layout builder for that post. If you want the regular tags to display then you’ll want to switch to the default editor.

    If you want to keep using the advanced layout builder there and display only tags assigned to the post then the code would look like this.

    echo '<span class="blog-tags minor-meta">';
    the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    echo '</span></span>';
    

    I suppose you could use a plugin to execute PHP in a text widget for that, https://wordpress.org/plugins/exec-php/.

    Or just type the tags out manually.

    Regards,
    Elliott

    • This reply was modified 10 years, 6 months ago by Elliott.
    in reply to: How is The Events Calendar Week view determined ? #470980

    Hey!

    The theme does not change that display. If you switch to the default 2015 theme you’ll see it displays the same way. If you want to change which times are displayed then you’ll need to edit the plugin which is outside the scope of our support. It would be best to contact the plugin support to see if it’s possible.

    Best regards,
    Elliott

    Hey!

    Hmm, not sure what is going on there. Your getting a bunch of 404 not found errors in the dashboard.

    It looks like you have Enfold 3.2 installed. Try completely deleting it from your WordPress theme directory via FTP and then download + upload a fresh copy from themeforest. After doing that you should have 3.2.2 installed.

    Check the permissions on the Enfold folder after uploading to make sure they look correct. Also add this to your wp-config.php file.

    define( 'CONCATENATE_SCRIPTS', false );
    

    And let us know when your done.

    Best regards,
    Elliott

    in reply to: Google Maps and CSS Animations Not Working #470964

    Hey!

    No, your settings will be fine but I would create a backup or export them in Dashboard > Enfold > Import/Export just in case.

    Cheers!
    Elliott

    in reply to: Showing social share icons on aggregated blog posts #470962

    Hey tnscnate!

    So your wanting every post in your blog page to display social buttons beneath it and have them link to the post instead of the current page?

    That is going to take a lot of time and code to implement actually. Also, I’m not sure if it’s a good idea for SEO or not.

    I would consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it get enough interest then our devs will look into it.

    Cheers!
    Elliott

    • This reply was modified 10 years, 6 months ago by Elliott.

    Hey!

    You would use the wp_get_post_terms function, http://codex.wordpress.org/Function_Reference/wp_get_post_terms.

    Something like this.

    $terms = wp_get_post_terms( $post->ID, 'portfolio_entries' );
    foreach ( $terms as $term ) {
    	echo $term->name;
    }

    Cheers!
    Elliott

    in reply to: How Do I Create My Own Blog Style? #470901

    Hi caretecher!

    That’s going to take a lot of time and code to implement so it would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.

    But to answer your question, the file your looking for is in /enfold/config-template-builder/avia-shortcodes/blog.php.

    Best regards,
    Elliott

    • This reply was modified 10 years, 6 months ago by Elliott.
    in reply to: LayerSlider Full Width #470893

    Hi John!

    You don’t have to set the individual image height / width. All you need to do is make sure the slider is set to fullwidth in the slider settings.

    You most likely have some weird CSS or setting added to it which is causing that behaviour. I would try creating a new slider and just add the images to the slides and start from there. They should display correctly.

    If your still having trouble then send us a WordPress login and we’ll take a closer look.

    Cheers!
    Elliott

    in reply to: Contact Forms gone missing #470888

    Hi!

    That sounds like a good idea. Or at least scrolling to the fields which have not been filled out correctly.

    Go ahead and create a feature request here, https://kriesi.at/support/enfold-feature-requests/, and we’ll probably see something get added in a future update.

    Best regards,
    Elliott

    in reply to: Move Related Product #470885

    Hey!

    It’s working fine on my XAMPP setup. In the latest version it’s lines 1027 – 1028 and line 1071.

    Regards,
    Elliott

    in reply to: Testimonial Image animation #470867

    Hey!

    Hmm, they are not popping up for me anymore. Try clearing your browser cache.

    Best regards,
    Elliott

    Hey!

    2. Try adding this to your custom CSS.

    .header-scrolled-full { display: none !important; }
    

    Regards,
    Elliott

    in reply to: Site problem with Explorer 8 #470860

    Hi!

    Try adding this.

    .avia-msie-8 #menu-item-4385 .avia-menu-text { position: relative; top: -30px; left: 30px; }
    

    To move the VIP button around on IE.

    Your getting some errors in IE8 which looks to be from some plugin scripts.

    Regards,
    Elliott

    in reply to: Adding a thin line after a title #470478

    Hi Rupert!

    Try adding this to your custom CSS.

    .av-special-heading-tag { border-bottom: 1px solid black; }
    

    That should still display as gray. If that’s not what you were wanting then send us a link to your page and take a screenshot highlighting what your trying to do. Your screenshot link is asking for a login.

    Cheers!
    Elliott

    in reply to: Portfolio page navigation missing when using #470473

    Hey envis!

    It’s because they overlap. You can add this to your child theme functions.php file if you want it to display anyway.

    add_filter( 'avia_post_nav_settings', 'enfold_customization_post_nav', 99 );
    function enfold_customization_post_nav( $settings ) {
    	$settings['is_fullwidth'] = false;
            return $settings;
    }

    Regards,
    Elliott

    • This reply was modified 10 years, 6 months ago by Elliott.
    in reply to: Portfolio Post tags #470466

    Hi Richard!

    Your portfolio posts should already be displaying tags that they have been assigned to at the bottom of the post.

    You mean your wanting to display all tags? You could use the “Tag Cloud” widget in a sidebar or in the “Widget Area” element.

    Regards,
    Elliott

    in reply to: Remove 'portfolio' from sitemap #470456

    Hey!

    In Dashboard > SEO > XML Sitemaps you can choose which post types, etc etc, get added to your sitemap. This isn’t really a theme question so it would be best to contact the Yoast SEO support, https://wordpress.org/support/plugin/wordpress-seo.

    Cheers!
    Elliott

    in reply to: 500 Internal Server Error #470451

    Hi!

    Can you send us a link to where we login to the dashboard? I keep getting redirected to a cpanel login.

    Cheers!
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: Fullwidth Easy Slider question #470450

    Hi!

    In the slider options there is one called “Autorotation active?” which you had it set to no. Switching it to yes will turn on the auto rotate feature.

    Best regards,
    Elliott

    in reply to: WP Job Manager #470444

    Hey Ewoud!

    I have not tested it out personally. If anyone has then please let us know.

    I would try contacting them to see if they offer refunds in case things don’t work out.

    Best regards,
    Elliott

    in reply to: Issue with top of the page #470442

    Hey!

    It’s not from the theme. It’s most likely from some kind of google ads plugin or perhaps your site was hacked and someone added it in there. Deactivating all of your plugins and uploading a fresh copy of the theme will fix it.

    Or if you just want to hide it and forget about it then the following CSS will work.

    body > iframe:first-child {
      display: none;
    }

    Regards,
    Elliott

    in reply to: Carousel and Shortcodes won't work #470440

    Hi!

    Your getting a javascript error related to gravatar it looks like. Try deactivating all of your plugins and then clear your browser cache to see if it goes away.

    Regards,
    Elliott

    Hey allinmom!

    That style gets set when the page has a sidebar. Set the page layout to right sidebar and then drag a codeblock element to the page content and add this inside.

    <style type = "text/css">
    .container .av-content-small.units {
      width: 100% !important;
      border-right: 0px;
    }
    aside { display: none !important; }
    </style>

    Best regards,
    Elliott

    • This reply was modified 10 years, 7 months ago by Elliott.
    in reply to: prevent post slider element from resizing #470434

    Hey Apollo87!

    Try adding a codeblock element to the page and add this inside.

    <style type = "text/css">
    .avia-content-slider .slide-image { max-height: 400px !important; }
    </style>

    Cheers!
    Elliott

Viewing 30 posts - 6,271 through 6,300 (of 14,834 total)