Forum Replies Created

Viewing 30 posts - 46,021 through 46,050 (of 66,084 total)
  • Author
    Posts
  • in reply to: Problem adding a drop down menu in a widget area #491997

    Hey!

    You can add something like this in a text widget:

    <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
        <option value="">Select...</option>
        <option value="http://yousite.com/donation-1">Donation Page 1</option>
        <option value="http://yousite.com/donation-2">Donation Page 2</option>
        <option value="http://yousite.com/donation-3">Donation Page 3</option>
        <option value="http://yousite.com/donation-4">Donation Page 4</option>
    </select>

    Cheers!
    Ismael

    in reply to: change required fileds in comment form with ALB #491996

    Hey scubasnsi!

    Thank you for using Enfold.

    It is possible to remove certain elements in the comment form but, unfortunately, you can’t separate the comment list and comment forms. Use this to remove the elements:

    span.minitext, .comment-form-url {
        display: none;
    }

    Regards,
    Ismael

    in reply to: Masonry Portfolio Title Underneath the Images #491994

    Hi!

    Yes, it is possible but it will require major code rewrite. You need to modify the config-templatebuilder > avia-shortcodes > portfolio.php file and then add custom css modifications. Look for this code:

    $extraClass .= ' default_av_fullwidth ';
    
                        $output .= "<div data-ajax-id='{$the_id}' class=' grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>";
                        $output .= "<article class='main_color inner-entry' ".avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">";
                        $output .= apply_filters('avf_portfolio_extra', "", $entry);
                        $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size, $image_attrs )."</".$link_markup[1].">";
                        $output .= !empty($title) || !empty($excerpt) ? "<div class='grid-content'><div class='avia-arrow'></div>" : '';
    
                        if(!empty($title))
                        {
                            $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
                            $output .= '<header class="entry-content-header">';
                            $output .= "<h3 class='grid-entry-title entry-title' $markup>";
                            
                            if(!empty($title_link))
                            {
                            	$output .= "<a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a>";
                            }
                            else
                            {
                            	$output .= "".$title."";
                            }
                            
                            $output .= '</h3></header>';
                        }
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
                        $output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
                        $output .= '<footer class="entry-footer"></footer>';
                        $output .= "</article>";
                        $output .= "</div>";

    You can re-arrange the elements.

    Best regards,
    Ismael

    in reply to: Header Logo Overlapping Tabs #491993

    Hey!

    1.) Use this to fix the overlap issue:

    @media only screen and (max-width: 989px) {
    .av-main-nav > li > a {
        padding: 0 7px;
        font-size: 12px;
    }}

    2.) Add this to display the social icons on smaller screens:

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
        display: block;
        position: absolute;
    }}

    Cheers!
    Ismael

    in reply to: Secondary top menu background color. #491992

    Hi!

    You can try this in the Quick CSS field:

    .av_secondary_right .container:before {
        content: '';
        background-color: blue;
        width: 300px;
        height: 32px;
        display: block;
        position: absolute;
        right: 0;
    }

    Remove the background of the header meta container. If this is not what you’re looking for, a screenshot will help.

    Best regards,
    Ismael

    in reply to: Sort Portfolio Items In Alphabetical Order #491987

    Hey!

    I’m sorry but the avia_post_nav function is based on the get_previous_post and get_next_post functions which only retrieves adjacent posts. WordPress posts are designed to display in reverse chronological order (from newest to oldest) which means that the function can only fetch entries base on date the post was created. If you want to fetch the post by title, you will need to modify the avia_post_nav in the functions-enfold.php file. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Blog Widget Showing Pages #491986

    Hey mikehartrich!

    Thank you for using Enfold.

    The blog post element should only display posts and exclude pages or other post types. Please post the login details here so that we can check it.

    Best regards,
    Ismael

    in reply to: Add Ajax Search to Vertical Menu #491984

    Hey Lissasan!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10);
    
    function avia_append_search_nav_mod()
    {
        ob_start();
        get_search_form();
        $form =  htmlspecialchars(ob_get_clean()) ;
    	
        $items = '<div id="menu-item-search-mod" class="menu-item-search-mod menu-item menu-item-search-dropdown">
            <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
               </div>';
    
        echo $items;
    }

    Use this in the Quick CSS field to adjust the position of the search icon.

    #menu-item-search-mod {
        position: absolute;
        right: 50px;
        z-index: 6000;
    }

    Cheers!
    Ismael

    in reply to: 2 small problems #491982

    Hi tcoach84!

    Thank you for using Enfold.

    Please use this plugin to translate the text or strings: https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    Hey!

    I think you forgot the url to the website. Please post it here. Try to replace the code with this:

    
    add_filter('admin_head', 'avf_builder_button_params_mod', 10, 1);
    function avf_builder_button_params_mod($params) {
      $user = wp_get_current_user();
      if ( in_array( 'administrator', (array) $user->roles ) ) {
        echo '<style type="text/css">#avia_builder{display: none !important;}';
      }
    }
    

    Cheers!
    Ismael

    in reply to: Enfold Media Library not working in Grid view #491980

    Hey!

    @vonweizen: Please create a new thread. Post the website url and the login details there. Make sure that you have the latest version of WordPress and the theme.

    Best regards,
    Ismael

    in reply to: Masonry grid square dimensions #491979

    Hey!

    The masonry element is using the isotope script which calculates the position of the masonry items dynamically. I’m afraid, it’s not possible to control the height of the items without breaking the script. The width and height of the masonry items will depend on the number of columns and the current width of the main container.

    Best regards,
    Ismael

    in reply to: Socket social icons to work like social share buttons? #491978

    Hi Ramin!

    Thank you for using Enfold.

    I’m sorry but it’s not possible without major modification on the theme. You need to find a social share plugin. Try the following:

    https://wordpress.org/plugins/addthis/
    https://wordpress.org/plugins/simple-share-buttons-adder/

    You can modify the footer.php file if necessary.

    Regards,
    Ismael

    in reply to: arrange image position #491976

    Hi!

    If the color section is identical then you can use the same css class attribute.The website is on maintenance mode. Please post the login details here.

    Best regards,
    Ismael

    in reply to: How to activate the scrolling effect in ONE PAGE mode? #491975

    Hey!

    Please check it now: http://www.pcconsulting.it/laboratorywp/#servizi

    Cheers!
    Ismael

    in reply to: Error Column on Mobile #491973

    Hi!

    First, you need to edit the page then modify the table element. Remove this html code:

    <span style=”color: #000000;”></span>
    

    Add the code in Enfold > General Styling > Quick CSS field to change the color of the font to “red”. You can find the Quick CSS field at the bottom.

    Regards,
    Ismael

    in reply to: Menu with Icons, some last styling #491972

    Hi!

    Please post the url of the website here. You can try this code in order to decrease the left padding:

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

    Regards,
    Ismael

    Hi!

    Videos added on sliders are disabled on mobile devices by default. That’s why you need to add a fall back image.

    Best regards,
    Ismael

    in reply to: Reorder elements to ajax portoflio #491966

    Hey!

    If you want to modify the order of the objects in the portfolio grid, you can modify the config-templatebuilder > avia-shortcodes > portfolio.php file. Please hire a freelance developer to re-arrange the script.

    Best regards,
    Ismael

    Hey Biggy!

    Thank you for using Enfold.

    Kriesi is currently working on a fix and it should be release in the next few days.

    Best regards,
    Ismael

    in reply to: Layer Slider not rendering right #491963

    Hey!

    I checked the home page and the slider is fully responsive. Did you fix it?

    Best regards,
    Ismael

    Hey!

    I’m very sorry for the delay. A few of the modifications should be done directly in the parent theme files. If you can give us the ftp details, we will add the modifications for you.

    Best regards,
    Ismael

    Hey!

    Did you try the code above?

    function ava_exclude_portfolio($query) {
         $query->set( 'offset', '1' );
    }
    
    add_action('pre_get_posts', 'ava_exclude_portfolio');

    Cheers!
    Ismael

    in reply to: Center Special Heading in Grid Row on iPad #491960

    Hey!

    Alright. This should work:

    @media only screen and (max-width: 989px) {
    .custom-cell {
        padding: 20px !important;
    }}

    If the iPad has a retina display, please use this css media query: https://css-tricks.com/snippets/css/retina-display-media-query/

    Best regards,
    Ismael

    Hey!

    @senso: Sorry for the delay. Please provide a link to the actual blog page.

    Cheers!
    Ismael

    in reply to: Image Hover Effect Problem #489275

    Hey!

    The height of the image should be more than 100px. Please use images with the same size and ratio. Make sure that the height is more than 100px. The best thing to do is to create a blank canvas. Attach the logo image there before you upload it into WordPress.

    Regards,
    Ismael

    in reply to: Quick css is not responding anymore #489271

    Hey!

    I tried to login to the site but the login credentials above is not working. Please check. Make sure that you’re using the correct selector when modifying a certain element.

    Best regards,
    Ismael

    in reply to: Mega Menu Sub-Sub Menu to toggle click to open/close #489269

    Hi!

    I’m sorry but the mega menu doesn’t have that option by default. You will have to modify the mega menu script in order to create a toggle. Please hire a freelance developer or you can contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Sticky Header Always on only for certain pages #489267

    Hi!

    Can you please provide a screenshot of what you’re trying to do? I visited the site and there’s a huge gap after the logo. And if I scroll down, the logo relocated from center to the left. Was that intentional?

    Best regards,
    Ismael

    in reply to: Video not working on easy slider #489266

    Hey vinayb!

    Thank you for using Enfold.

    On what kind mobile device did you test it? Please try to use the video element instead of the easy slider.

    Cheers!
    Ismael

Viewing 30 posts - 46,021 through 46,050 (of 66,084 total)