Forum Replies Created

Viewing 30 posts - 1,411 through 1,440 (of 23,923 total)
  • Author
    Posts
  • in reply to: Adjusting ENFOLD Demo #632893

    Hey Thijsalex,

    You can import the Demo (Theme Options > Demo Import) you wish to use and start with that.

    Best regards,
    Josue

    in reply to: scroll down link issue #632891

    Hey ,

    Fixed, added this to child theme functions.php:

    function avia_get_header_scroll_offset(){
        return 0;
    }

    I happened because the scroll script calculates the top offset using the header size.

    Best regards,
    Josue

    in reply to: error after theme update #632889

    Hey,

    That’s a “warning”, in PHP, these are simple messages indicating something is odd, they don’t stop execution like Fatal Errors. That being said, do you always get this exact message when updating the theme? does it happen with plugins too?

    Best regards,
    Josue

    in reply to: Enfold vs Thrive Leads plugin #632886

    Hi,

    @zerdsolutions, seems to be a plugin conflict indeed, here’s a JS fix you can try, add this at the very end of your themes / child themes functions.php file:

    function add_custom_script(){
    ?>
    
    (function($){
    $(window).load(function() {
    if(!$('aside.sidebar').parents('.container').length > 0){
        $('aside.sidebar').appendTo($('.sidebar_right .container'));
    }
    });
    })(jQuery);
    
    <?php
    add_action('wp_footer', 'add_custom_script');


    @traumreiter
    , no you can’t combine both themes without custom work, their plugins may work though.

    Best regards,
    Josue

    Hey Marsha,

    Try adding this too:

    .single-post span.blog-categories, 
    .single-post .slide-meta {
    display: none;
    }

    Best regards,
    Josue

    in reply to: WooCommerce Styling Problems #632879

    Hi,

    Your Product page doesn’t look like the screenshots you posted, add this to Quick CSS to remove the duplicated title:

    #tab-description > h2 {
        display: none;
    }

    Best regards,
    Josue

    in reply to: News headline font family #632877

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .news-headline {
        font-family: 'Metrophobic', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    

    Best regards,
    Josue

    in reply to: Appointments+ compatibility with enfold. #632870

    Hi,

    The link you posted (‘/make-an-appointment’) is returning a 404 error page.

    Best regards,
    Josue

    in reply to: Adsense Doesn't Work #632866

    You’re welcome, glad to help :)

    Best regards,
    Josue

    in reply to: Mobile display of 4/4 elements inside 1/3 column #632863

    Hi,

    When editing the Grid Row element there’s an option to change the Mobile behavior:

    Cells appear beside each other, just like on large screens
    

    Best regards,
    Josue

    in reply to: theme backend not working anymore #632859

    Hi,

    Can you please provide us a temporary FTP access (via private data field)?

    Best regards,
    Josue

    in reply to: Adsense Doesn't Work #632852

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .textwidget ins:before {
        display: none !important;    
    }
    

    Best regards,
    Josue

    in reply to: Homepage buttons using full screen slider #632491

    Hi,

    The number does display in the URL when you edit the Page in the backend – http://screencast.com/t/Vsd0XjXX

    If it’s not working indicate the Buttons-Pages to be linked and i’ll do it for you.

    Best regards,
    Josue

    Hi Roger,

    If you want to modify an Enfold Widget simply paste the widget code into functions.php, for example for the Maps:

    class avia_google_maps extends WP_Widget {
    ....
    }

    Best regards,
    Josue

    in reply to: Enfold, Google Analytics and AIOSEO #632136

    Hi Marcello,

    Yes, you can do that, place them one after another in the GA field.

    Best regards,
    Josue

    in reply to: Column display on mobilve #632021

    Hi,

    Thing is, the border is caused by the image spaces, see below:
    http://screencast.com/t/Z7FohaOJUK5

    With background:
    http://screencast.com/t/1BssFYXdeCn

    Best regards,
    Josue

    in reply to: Homepage buttons using full screen slider #632000

    Hey,

    Check the site, i added the following to the first slide caption:

    
    <div class='framed'>Supporting the community</div>
    <div class='buttons'>
    [av_button label='Children’s Services' link='page,5710' color='light' size='medium' position='left' icon_select='no']
    [av_button label='Training' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no']
    [av_button label='Extra Button' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no']
    [av_button label='Extra Button' link='page,5710' color='theme-color' size='medium' position='left' icon_select='no']</div>
    

    Change the link for the 2 extra buttons (5710 is Page ID). Also added this to Quick CSS:

    /* Slider extra buttons */
    .slideshow_caption{
        width: 55%;
    }
    .avia-caption-content .framed {
        background: #000;
        filter: alpha(opacity = 80);
        background: rgba(0, 0, 0, 0.5);
        display: inline-block;
        margin: 0 0 1px 0;
        padding: 10px 15px;
    }
    
    .avia-caption-content .buttons br{
        display: none;
    }
    .avia-caption-content .buttons a{
        text-decoration: none !important;
        text-transform: uppercase;
        padding: 15px 16px;
    }
    
    .avia-caption-content .buttons a.avia-color-light {
        padding: 12px 16px;
    }
    • This reply was modified 9 years, 2 months ago by Josue.
    in reply to: How to make the footer smaller? #631995

    You are welcome, glad to help :)

    Regards,
    Josue

    Hi,

    Yes, it will work if you use the .css file, but i forgot about another thing, usually Sass -and similar- strip the comments of the file in order to compile it compressed / minified, this would lead to a problem if you use style.css because style.css is a key theme file that uses CSS comments (/* */) to tell WordPress the theme’s metadata (parent theme, theme name, author, etc).

    As a suggestion, if you use child themes extensively try to not use style.css as your custom CSS file (because of the aforementioned), instead create a /css/ folder in your child theme and use a custom file (ex: main.css), to enqueue it simply paste this in functions.php:

    add_action('wp_enqueue_scripts', function() {
       wp_enqueue_style( 'main-css', get_stylesheet_directory_uri().'/css/main.css', array(), '', 'all' );
    }, 100);

    Regarding the coloring issue, i think it would depend, if you’re on a live server i’d suggest using less.js, however i wouldn’t recommend having that once the site is finished because it could affect the performance.

    Preprocessors are a big topic, maybe it would be better to start testing on a local HTML page and once you get a hang of it transition to the child theme.

    Best regards,
    Josue

    • This reply was modified 9 years, 2 months ago by Josue.
    in reply to: slider (full width) on mobile, change height and font #631369

    Hi,

    The reason i asked to disable auto-rotation was so i can debug the slider caption, would be easier if you could hand me a WordPress administrator account via private reply so i can test the slider settings as needed.

    Regards,
    Josue

    • This reply was modified 9 years, 2 months ago by Josue.
    in reply to: iframe not working in codeblock #631323

    Hi,

    Try enclosing the code in a shortcode instead, you can do that with this code in functions.php:

    function custom_shortcode_func() {
    	ob_start();
    	?>
    		PUT YOUR CODE HERE
    	<?php
    
    	$output = ob_get_clean();
        return $output;
    }
    add_shortcode('my_shortcode', 'custom_shortcode_func');
    

    Then you’d use [my_shortcode].

    Best regards,
    Josue

    Hi,

    If you include a .scss it won’t work because it’s not meant to work that way, a preprocessor is meant to produce a .css file. LESS does have the option to compile .less files live (less.js), that should work but it will require more set-up.

    Best regards,
    Josue

    Hey!

    Try adding this code to the Quick CSS:

    #top .av-submenu-container {
        position: static;
    }

    Cheers! 
    Josue

    in reply to: Child Theme Problem #631309

    Hi John,

    It’s fixed, you had jQuery included on a Widget – http://screencast.com/t/yxoTERV8, WP already includes jQuery so when another one is present it tends to cause these kind of issues.

    Best regards,
    Josue

    in reply to: Internet Explorer issues #631293

    Hey,

    Please specify which version of IE is presenting problems and on which OS, screenshots of the issues would help too.

    Best regards,
    Josue

    in reply to: Homepage buttons using full screen slider #631289

    Hey,

    You could use multiple buttons shortcodes as ‘captions’ instead of the default 2 buttons option:

    [av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello']
    

    Best regards,
    Josue

    Hey,

    Try adding overflow: hidden to your border code:

    .border-top-bottom {
        border-top: 1px solid #000000!important;
        border-bottom: 1px solid #000000!important;
        overflow: hidden;
    }

    Best regards,
    Josue

    in reply to: Large amount of files in uploads folder #631282

    Hi,

    1. Deleting it from a Gallery element won’t remove it unless you do it from Media.

    2. Enfold does not create folders for file uploads, that’s entitled to WordPress -which by default- will create folders using the current date the file is uploaded.

    Best regards,
    Josue

    in reply to: Column display on mobilve #631271

    Hi,

    Seems to be caused by the images spacing, try setting the grid row background to #e8dfd8.

    Regards,
    Josue

    in reply to: navigation displays incorrectly on Firefox for Mac #630409

    Hi,

    Don’t reduce the menu items width with negative margins:

    .avia-menu-text{font-weight:normal;letter-spacing: 1px; margin-left: -5px; margin-right: -5px;}
    

    Instead, reduce the padding of the parent element:

    .av-main-nav > li > a{
    padding: 0 6px;
    }

    Best regards,
    Josue

Viewing 30 posts - 1,411 through 1,440 (of 23,923 total)