Forum Replies Created

Viewing 30 posts - 53,971 through 54,000 (of 67,499 total)
  • Author
    Posts
  • in reply to: Social Media Icons as in your enfold template #351116

    Hi!

    Looks like you add css modifications on the theme. Please remove those:

    .social_bookmarks_facebook {
    background: #37589B !important;
    }
    
    .social_bookmarks_facebook {
    width: auto !important;
    }

    The social icons should like the demo by default.

    Regards,
    Ismael

    in reply to: Burger Menu on larger screens #351115

    Hi!

    This modification will require changes on javascript, php and css files which is why this is beyond the scope of our support. Please hire a freelance developer. For further modifications, please visit Envato Studio or Werkpress.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: Remove recent comments sidebar #351113

    Hi!

    You can remove the Recent Comments widget on Appearance > Widgets panel.

    Cheers!
    Ismael

    in reply to: Show slider captions on portrait phones #351112

    Hey!

    You have this custom css code:

    @media only screen and (max-width: 479px) {
    .slideshow_caption {
    display: block;
    }
    }

    Please remove it.

    Regards,
    Ismael

    in reply to: Memory Issues with BBPress #351111

    Hi!

    Please let us know if it works. We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Text Block Follow Up #351110

    Hey!

    You can set the login details as private reply. Only you and the moderators can see it. Please post it here so that all of us (moderators) can see it.

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    Glad you figured it out. You can unregister the default avia.js file then enqueue it again from the child theme folder. Add this on functions.php:

    /*
     * Register frontend javascripts:
     */
    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    	wp_enqueue_script( 'avia-default-child' );
    }

    Create a js folder inside the child theme.

    Best regards,
    Ismael

    in reply to: Stretch / Resize Large Featured Image on Single Post #351108

    Hey!

    Thank you for the info.

    Please use this on Quick CSS or custom.css to resize the featured image:

    .big-preview img {
    width: 100%;
    }

    Regards,
    Ismael

    in reply to: "Special Headline" – looking for adjustment 'to the left' #351107

    Hi aovivo!

    Thank you for using Enfold.

    Can you please provide a link to the actual page with the issue? A screenshot will help. You can actually modify the special heading element via css. Use this:

    body .av-special-heading .av-special-heading-tag {
    float: right;
    }

    Refer to this link on how to add a custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Regards,
    Ismael

    in reply to: Menu issues with theme update #351104

    Hey!

    Thank you for the info.

    The UberMenu plugin is indeed compatible with Enfold but you have to configure it manually. Unfortunately, we won’t be able to debug the issue unless you activate the plugin. Moreover, we usually don’t provide support for third party plugins so you may have to investigate this issue yourself or hire a freelance developer to modify the theme structure to coincide with the current UberMenu plugin settings. If you can activate the UberMenu plugin, we would like to check it. Maybe a simple css fix will do.

    Regards,
    Ismael

    Hey flypromotion!

    Thank you for using Enfold.

    Please use this to fix the cart icon:

    @media only screen and (max-width: 767px) {
    .responsive .cart_dropdown {
    display: block;
    right: 10px !important;
    }
    }

    Regards,
    Ismael

    in reply to: The Events Calendar #351102

    Hey Luke86!

    Thank you for using Enfold.

    Unfortunately, you can’t add the layer slider for single events page. You can use the shortcode wand to add other shortcodes like the Easy Slider or Content Slider.

    Best regards,
    Ismael

    in reply to: Author bio box end of post #351100

    Hey jorlafer!

    Thank you for using Enfold.

    You can edit single.php, find this code:

      get_template_part( 'includes/loop', 'index' );
    

    Add this below:

    if(is_single()) get_template_part( 'includes/loop', 'about-author' );
    

    Cheers!
    Ismael

    in reply to: Portfolio vs blog #351098

    Hey benteasbjorn!

    Thank you for using Enfold.

    The portfolio works exactly like posts, the advantage is that you can use the advance layout builder. You can create one portfolio item for each picture or gallery then add tags or categories. The default search might not work for filtering tags but you can try to use the Relevanssi plugin. Please refer to this link for more info: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Cheers!
    Ismael

    in reply to: Blog Image on left of Meta and Excerpt #351096

    Hey youtea!

    Thank you for using Enfold.

    You can try the magazine element instead of the blog posts element.

    Regards,
    Ismael

    in reply to: Menu reloads by woocommerce product pages #351095

    Hey loesklijberg!

    Thank you for using Enfold.

    The header looks fine when I checked it or maybe I didn’t understand you clearly. Can you please provide a screenshot of the issue? You can use imgur, dropbox, clipular etc.

    Cheers!
    Ismael

    in reply to: Änderung von Abständen und ID Zuweisung #351094

    Hi Daniela!

    Thank you for using Enfold.

    1.) Instead of using the text blocks, use the Image element.

    2.) Move the text block with the heading LEISTUNGEN inside the column where the content is resided.

    3.) I’m not sure if I understand this one clearly. Can you please translate it to english?

    Cheers!
    Ismael

    in reply to: Changing the from field in contact form #351089

    Hi darkban!

    Thank you for using Enfold.

    Please use this on functions.php:

    function change_cf_from() {
    	return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);

    Change the email.

    Cheers!
    Ismael

    in reply to: Logo won't resize correctly on tablet (iPad tested) #351087

    Hey!

    Thank you for the screenshot.

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .logo img, .responsive .logo {
    margin: 0;
    height: 74px;
    width: 634px !important;
    }
    }

    Cheers!
    Ismael

    Hey!

    1.) Are you referring to the widget? The code should work for the portfolio and blog title. Please use this:

    strong.news-headline {
    font-size: 20px;
    }

    2.) Please provide a screenshot of the border. The code above should remove the border of the header and the main menu.

    Regards,
    Ismael

    in reply to: Please contribute and translate Enfold #351085

    Hey!


    @Elisejansen
    : You can create a new one. Please try the Open Graph meta data option of the Yoast SEO plugin.

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    Unfortunately, this particular request or modification is more than what we can offer as a support team. This task is beyond the scope of support and is not a theme related issue. Please hire a freelance developer to configure the theme structure or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Add page urls to ajax portfolio #351083

    Hey pixallus!

    Thank you for using Enfold.

    I’m sorry but what do you mean by adding page URLs to ajax portfolio items? You can define a custom link when editing a portfolio item. Look for Overwrite Portfolio Link setting, set it to define custom link.

    Best regards,
    Ismael

    in reply to: Sticky Masonry Menu #351082

    Hi!

    Please try this:

    @media only screen and (min-width: 767px) {
    .avia-fullwidth-portfolio .sort_width_container {
    margin: 0;
    position: fixed;
    top: 90px;
    width: 100%;
    z-index: 900;
    margin: 0 auto;
    }
    }

    Adjust the top position value.

    Regards,
    Ismael

    Hey!

    Please try this:

    add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
    
    function disable_google_map_api($load_google_map_api) {
    	$load_google_map_api = false;
    	return $load_google_map_api;
    }

    This should disable the theme’s default google map api. If it doesn’t work, I’m not sure we can be of any help regarding this issue. I’m sorry but you will need to contact the plugin author. We don’t usually provide support for third party plugins as stated on our support policy.

    Best regards,
    Ismael

    in reply to: Menu Items Overlay Logo #351078

    Hey!

    You can adjust the padding and font size of the main menu items:

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

    Regards,
    Ismael

    in reply to: Dates on Magazine Element #351077

    Hi!

    You can manually edit the published date of the posts. Look for Published > Published on: setting. Click edit.

    Regards,
    Ismael

    in reply to: +/- toggle is not appearing in WooCommerce #351076

    Hi!

    I think you should probably replace the actual WooCommerce plugin because there are missing files or some of them are corrupted. Download the latest version then override the old plugin files. Also, download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: beschriftung in suchmaske #351075

    Hi diefleischerei!

    Thank you for using Enfold.

    Please add this on functions.php:

    add_filter('get_product_search_form', 'get_product_search_form_modify', 10, 1);
    function get_product_search_form_modify($form)
    {
    	//global $product; 
    	
    	$form = '<form role="search" method="get" id="searchform" action="' . esc_url( home_url( '/'  ) ) . '">
    	<div>
    		<label class="screen-reader-text" for="s">' . __( 'Search for:', 'woocommerce' ) . '</label>
    		<input type="text" value="' . get_search_query() . '" name="s" id="s" placeholder="' . __( 'Produkt', 'woocommerce' ) . '" />
    		<input type="submit" id="searchsubmit" value="'. esc_attr__( 'Suche', 'woocommerce' ) .'" />
    		<input type="hidden" name="post_type" value="product" />
    	</div>
    	</form>';
    	
    	return $form;
    }

    Regards,
    Ismael

    Hi!

    Thank you for the update.

    I tested the site on Safari the anchor link works fine. It takes me to the #ggg slider when I used the url.

    Best regards,
    Ismael

Viewing 30 posts - 53,971 through 54,000 (of 67,499 total)