Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #919142

    Hi there,

    I want to change the appearance of the page (link into the private content).

    I cannot see where I can add my header image or change the calendar colors.

    Can you helps me ?

    #919468

    Hey Inazad,

    Yes, as for the header image, you need to get the header image shortcode first (which will be needed later), you might need to enable Avia Layout Debugger: https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    then in your functions.php add this php code:

    add_action( 'ava_after_main_title', 'add_calendar_banner', 99 );
    
    function add_calendar_banner() {
    	if( is_post_type_archive( 'tribe_events' ) ) {
    		echo do_shortcode("[shortcode_here]");
    	}
    }

    replace [shortcode_here] with the header image shortcode. As for the color, you can set it in Enfold > General Styling > Main Content (tab) > Primary color. Hope this helps :)

    Best regards,
    Nikko

    #919716

    Thanks for the answer but where I can get the ” you need to get the header image shortcode first” ?

    #919734

    Hi,

    You would need to enable Avia Layout Debugger First: https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    Then go to one of your pages with header image, then check below the Content Area, you should see some shortcodes, here is an example of how it looks: https://imgur.com/a/sZMeX

    Best regards,
    Nikko

    #921650

    I’ve added the lines at the end of functions.php, I see nothing… I’ve added the other line cause I don’t use a child theme.

    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    #921672

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #922356

    You username / password are below.

    #922380

    Hi,

    Try to use this shortcode:

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' color='main_color' custom_bg='' src='https://partners.komutel.com/wp-content/uploads/2018/02/ph_entete-web.jpg' attachment='3643' attachment_size='full' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'][av_heading heading='SALES TOOLS' tag='h3' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' padding='3' color='custom-color-heading' custom_font='#ffffff' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg=''][/av_heading][/av_section]

    or copy it from here: https://pastebin.com/G84Rw0JA then replace SALES TOOLS with the title that you want to use. Hope it helps :)

    Best regards,
    Nikko

    #923168

    It doesn’t work… see by yourself

    #923651

    Hi,

    Sure, can you give us ftp access? so we can try to do it via ftp and can easily undo if there is an issue.

    Best regards,
    Nikko

    #923916

    Sure, check in the private data below.

    #925332

    Hi,

    Thanks for giving us ftp access and sorry for the late response, I have added it and have added this css code in Quick CSS (located in Enfold > General Styling):

    .archive.post-type-archive-tribe_events .av-special-heading {
        margin-top: 0;
    }
    
    .archive.post-type-archive-tribe_events .container .av-content-small.units {
        border: none !important;
        width: 100%;
    }
    
    .archive.post-type-archive-tribe_events #after_section_1 .container .av-content-small.units {
        padding-top: 0;
    }
    
    .archive.post-type-archive-tribe_events #after_section_1 .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .archive.post-type-archive-tribe_events #after_section_1 .container .entry-content-wrapper {
        padding-right: 0;
    }
    
    .archive.post-type-archive-tribe_events #after_section_1 .container .container {
        margin: 0 auto;
        padding: 0 50px;
        width: 100%;
        max-width: 1410px;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #925807

    Why does all the copied elements disapears when I click save ?

    in the page “Sales Tools”, I’ve made one row as a model of structure. I cpoied the elements of the first row to build the 2nd and 3rd row.

    When I do a changes, often 9/10 times I have to restore from a revision cause the builder clear all the copied elements… they still keep on ly the first row.

    Why this is happening ? Very frustrating.

    #926137

    And by the way the custom css do nothing in the calendar page ?

    #926496

    Hi,

    I have copied the elements on your Sales Tools page multiple times and didn’t have any issue and no errors in the console.

    As for the custom css, it won’t work, unless the code I gave is added, I checked your functions.php and the code I added wasn’t there, did you update the theme?

    Best regards,
    Nikko

    #926619

    Me when I try to save, all the blocks disapear. Its weird…

    I’ve did a theme update yesterday.. maybe it helped.

    So for the CSS, I have to add it in the custom CSS section ?

    #927907

    Hi,

    The css code is still in the Quick CSS field so you don’t have to add it again. We added the hook again in the functions.php file. If you have the time, please move it to a child theme.

    // https://kriesi.at/documentation/enfold/using-a-child-theme/

    Best regards,
    Ismael

    #928134

    I moved to a child theme, where in the functions.php you put the code that I have to move to child’s functions file ?

    #928496

    I do not see where to change the “SALES TOOLS” title…

    I don’t find the CSS in the Quick CSS section.

    I used a child theme now, maybe the CSS code is still in the parent quick css ?

    #929068

    I found it.

    #929128

    Hi,

    Sorry for the late response, I have checked it and it seems that you have already done it. Let us know if you still need further assistance.

    Best regards,
    Nikko

    #930100

    please close this ticket.

    #930371

    Hi Inazad,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 23 posts - 1 through 23 (of 23 total)
  • You must be logged in to reply to this topic.