Forum Replies Created

Viewing 30 posts - 37,531 through 37,560 (of 66,745 total)
  • Author
    Posts
  • in reply to: Remove product category page-title #736930

    Hi!

    Please add the following filter in the functions.php file to disable the page title.

    add_filter('woocommerce_show_page_title', function() {
    	return false;
    });

    Best regards,
    Ismael

    Hey!

    I’m not really sure about that but you can ask or vote for the feature here.

    // https://kriesi.at/support/enfold-feature-requests/

    Regards,
    Ismael

    in reply to: Negative margins on columns on mobile device #736925

    Hi!

    I’m sorry but I can’t find that section in any page. Could you please provide a link or url to the actual page with the issue?

    Best regards,
    Ismael

    in reply to: Datum aus Suchergebnissen in Google entfernen #736924

    Hi!

    The theme contains a single file for the schema.org markup and that is the helper-markup.php file. If the suggestions are not working, maybe there’s another plugin or modification that is creating those info or markup. Please hire a freelance developer or contact our partner (Codeable) to investigate it further.

    // http://kriesi.at/contact/customization

    Regards,
    Ismael

    Hi!

    Please edit the config-events-calendar > views > single-event.php file, look for these block of codes.

    <div class='av-single-event-meta-bar'>
    				
    					<div class='av-single-event-meta-bar-inner'>
    					
    					<!-- Event meta -->
    					<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
    						<?php
    						/**
    						 * The tribe_events_single_event_meta() function has been deprecated and has been
    						 * left in place only to help customers with existing meta factory customizations
    						 * to transition: if you are one of those users, please review the new meta templates
    						 * and make the switch!
    						 */
    						if ( ! apply_filters( 'tribe_events_single_event_meta_legacy_mode', false ) )
    							tribe_get_template_part( 'modules/meta' );
    						else echo tribe_events_single_event_meta()
    						?>
    					<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
    				
    				</div>
    			</div>
    

    You can move it inside the av-single-event-content container. This line:

    <div class='av-single-event-content'>
    

    Cheers!
    Ismael

    in reply to: Blog Category Submenu For ALL Blog Pages #736918

    Hey!

    Instead of editing the archive.php file, please add this hook in the functions.php file.

    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_archive()) {
    		echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2']
    [/av_submenu]");
    	}

    Cheers!
    Ismael

    in reply to: CSS Font Face "Unexpected CSS Token" Error #736916

    Hey!

    Thank you for using Enfold.

    I don’t see the said error but there is a “mixed content” error in the console. Please look for a “https” or any “ssl” plugins in the wp plugins library. Example:

    // https://wordpress.org/plugins/really-simple-ssl/
    // https://wordpress.org/plugins/wp-force-ssl/

    Best regards,
    Ismael

    in reply to: using a custom single-CTP.php page for a CPT I have added #736912

    Hi!

    Are you using the advance layout builder? If you are, the single template is not going to work because it’s going to use template-builder.php file. I tried to login but the login credentials are not working. Please check it carefully.

    Regards,
    Ismael

    in reply to: Enfold theme and Eventon Search Addon #736910

    Hi norbertfarkas!

    Thank you for using Enfold.

    How can we reproduce the issue? We will try to help but please note that we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for additional help.

    Cheers!
    Ismael

    Hey!

    Thank you for the info. I thought you’re referring to the Portfolio Grid element. Anyway, that is also the default markup of the portfolio widget, unfortunately. I’m not sure if Kriesi is going to alter it anytime soon by including the author field. Again, you can request the feature in the following link.

    // https://kriesi.at/support/enfold-feature-requests/

    Thank you for your understanding.

    Regards,
    Ismael

    in reply to: Header background different colours #736784

    Hey!

    However the other problem with the colour sections doesn’t seem to have resolved things

    If you don’t mind, please post the FTP details here so that we test the script further. I’m sure we could come up with a custom solution to the issue.

    Best regards,
    Ismael

    Hi!

    Did you copy the code from your email? The quotes will be converted to their html entity form thus the error. Please copy it directly from this forum.

    Cheers!
    Ismael

    in reply to: Ajax portfolio issues #736779

    Hi!

    Great! Please try the following plugins.

    // https://wordpress.org/plugins/add-facebook/
    // https://wordpress.org/plugins/feed-them-social

    Regards,
    Ismael

    in reply to: Search Icon Not Showing on mobile #736777

    Hey!

    Glad that it is working. Let us know if you need anything else. :)

    Regards,
    Ismael

    Hi!

    Could you please provide an access to the dashboard? We would like to check the actual settings of the page and the css modification.

    Cheers!
    Ismael

    in reply to: LayerSlider WP "full-width" – issue in MS Edge & IE 11 #736774

    Hi faircommedia!

    Thank you for using Enfold.

    Please try to set the Slider Width value to 100%.

    Cheers!
    Ismael

    Hi!

    Add a column element, enable the “Custom top and bottom margin” option then add a negative value to the top margin field.

    Best regards,
    Ismael

    Hi!

    Thank you for the screenshot. I can’t reproduce the issue either. What is the browser version and OS?

    Regards,
    Ismael

    Hey!

    That’s weird. Maybe, something is altering the url. Please disable all plugins then edit the page again.

    Cheers!
    Ismael

    in reply to: alter color on mobile display #736253

    Hey!

    Thank you for the info.

    Since we can’t find the background property, we added this css modification in the Quick CSS field.

    .display-posts-listing {
        background-color: #fdfcf6;
    }

    And we also found out that the site is running on a very very old version of the theme, 2.9.2. An update to the latest version, 3.8.3, could create a few issues so creating a backup of the site is a good idea.

    Regards,
    Ismael

    in reply to: Search Icon Not Showing on mobile #736248

    Hi,

    Thank you for using Enfold.

    Where do you want to put the search icon? It’s disabled because the default menu container is hidden on mobile view. If you want, you can add it inside the mobile menu container. Please add this filter in the functions.php file:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5" style="display: none;">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    And the following code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
    	#menu-item-search-mobile {
        	display: block !important;
    	}
    }

    Best regards,
    Ismael

    in reply to: Ajax portfolio issues #736241

    Hey Emma,

    Thank you for using Enfold.

    1.) Edit the portfolio item then set the Display Preview Images to “Slideshow” instead of “Gallery”.

    2.) It’s because of the easy-facebook-likebox plugin and this css code.

    .responsive, .responsive span, .responsive span iframe[style], .responsive span img {
        width: 100% !important;
    }

    Please add this css code to override it.

    .responsive .toggle_icon {
        width: 15px !important;
    }

    3.) Again, it’s because of the css code from the facebook plugin. Please disable it or add the css code that we suggested above.

    Best regards,
    Ismael

    Hi,

    Please follow the instructions here.

    // http://kriesi.at/documentation/enfold/child-theme-translations/

    And create a backup of the language files (.mo and .po) from the enfold > lang folder.

    Best regards,
    Ismael

    in reply to: Slider Content #736233

    Hi,

    The demo contains only two layer sliders, nothing else. And importing the demo will not recover lost sliders if that’s what you’re trying to do here.

    I miss all the stuff of my Slider I had integrated some month ago.

    What do you mean by “miss all the stuff of my Slider”?

    Best regards,
    Ismael

    in reply to: Submenü-Rahmen #736230

    Hey gnw,

    Thank you for using Enfold.

    What do you mean by “frame”? Would you like to remove the border of the sub menu container? Please add this in the Quick CSS Field.

    .av-main-nav ul {
        box-shadow: none;
        border: none !important;
    }
    
    .av-main-nav ul li a, .av-main-nav ul li:last-child > a {
        border: none !important;
    }

    Best regards,
    Ismael

    in reply to: Customize Woocommerce Shop Page on Enfold shop Demo #736229

    Hi,

    Thank you for the update.

    It’s the Shop Banner Image in the Enfold > Shop options panel. You can also change the text in the Shop Description field.

    Best regards,
    Ismael

    in reply to: Customize theme #736228

    Hi,

    Thank you for the update.

    2.) I don’t see the names or title of the images in the gallery.

    Best regards,
    Ismael

    in reply to: Accordion slider on mobile – is there a solution? #736223

    Hi,

    Yes, this is definitely possible. We actually have it documented in the following link.

    // http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    First, you need to turn on the custom css class field then edit the elements that you want to display or not display on mobile or desktop. Add the corresponding selector as instructed in the documentation.

    Best regards,
    Ismael

    in reply to: Table display #736221

    Hi,

    Please edit the table then set the Table Purpose to “tabular” and the Responsive Styling option to “scrollable”. This will disable the script that modifies the table layout on mobile view.

    Best regards,
    Ismael

    in reply to: Responsive background images #736218

    Hey ncfan2030,

    Thank you for using Enfold.

    How do you want the background image to display on mobile or smaller screens? One thing that you can do is to set the Background Image Position settings to “Center center”. You can also apply a different version of the image that is specifically created for smaller screens. Edit the color section, apply a Section ID to it, use “custom-section” for example then add the following css code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
        #custom-section {
           background-image: url(https://alphametic.com/wp-content/uploads/2014/08/mobile_version_of_the_image.jpg) !important;
        }
    }

    Adjust the image url.

    Best regards,
    Ismael

Viewing 30 posts - 37,531 through 37,560 (of 66,745 total)