Forum Replies Created

Viewing 30 posts - 53,401 through 53,430 (of 67,505 total)
  • Author
    Posts
  • in reply to: Child theme issue after latest enfold update #359438

    Hi!

    There’s a missing semi colon on the style.css codes:

    .avia-button.avia-size-large { padding: 15px 25px 13px; font-size: 18px !important; min-width: 139px; border-radius: 0; border: 1px solid ; border-color: rgba(226, 27, 133, 1) !important; font-weight: 200 !important}
    

    The last property should be:

    font-weight: 200 !important;
    

    Please make sure that your codes are properly closed.

    Regards,
    Ismael

    in reply to: Applying link to Icon and Title breaks Icon Box #359437

    Hi!

    Thank you for the info.

    Add this on Quick CSS or custom.css:

    #top .iconbox.av-no-box .iconbox_icon {
    display: block;
    }

    Regards,
    Ismael

    in reply to: Mask for Video in Slideshow #359434

    Hi!

    You can create a color section, add the id video-overlay. Use this on Quick CSS:

    #video-overlay:before {
    content: '';
    display: block;
    width: 100%;
    min-height: 1000px;
    background: rgba(255,255,255,.7);
    z-index: 2;
    position: absolute;
    }
    
    #video-overlay {
    overflow: hidden;
    }
    
    #video-overlay > * {
    z-index: 3;
    }

    Best regards,
    Ismael

    in reply to: Portfolio items #359432

    Hi!

    Did you add any membership plugin? Make sure that you’re current user profile have admin rights.

    Cheers!
    Ismael

    in reply to: Tag Manager without Child Theme #359430

    Hi slimmer1!

    Thank you for using Enfold.

    I’m not sure what code you’re trying to add but you can hook the snippet on the head tag with this:

    add_action('wp_head','ava_hook_script');
    
    function ava_hook_script() {
         $output = "SCRIPT HERE";
         echo $output;
    }

    You can add the code at the very bottom of functions.php file.

    Regards,
    Ismael

    in reply to: Horizontal opt in form #359429

    Hi!

    Alright. My bad. It should be max-height. Looks like you removed the my-section id on the color section. Use this:

    .page-id-28 div#av_section_1 {
    max-height: 80px;
    overflow: hidden;
    }

    Best regards,
    Ismael

    in reply to: Sticky Masonry Menu #359427

    Hi!

    You can try this:

    .header-scrolled + div div div .av-masonry-sort.main_color.av-sort-yes {
    margin: 0;
    position: fixed;
    top: 90px;
    z-index: 900;
    margin: 0 auto;
    max-width: 1500px;
    padding: 20px 50px;
    width: 1364px;
    }

    Regards,
    Ismael

    in reply to: Round buttons #359425

    Hi!

    I don’t think this is possible with the button element because the length of text may vary. You should use round images as buttons.

    Regards,
    Ismael

    in reply to: Social Icon Image replacement #359424

    Hey!

    Try to use the absolute uri of the images then add the !important value:

    #top .social_bookmarks_vimeo {
    background: url(https://www.plaetz.de/wp-content/themes/enfold_2/images/vw_logo.png) no-repeat center !important;
    }

    Cheers!
    Ismael

    in reply to: Beiträge in Kategorien werden nicht angezeigt #359423

    Hey polydeikes!

    Thank you for using Enfold.

    Please try to flush the permalink settings. Go to Settings > Permalink then click the “Save” button once.

    Cheers!
    Ismael

    in reply to: Comments on Posts – How to reply to a comment / embed #359422

    Hi!

    Make sure that the Enable threaded (nested) comments levels deep is activated on Settings > Discussions > Other comment settings panel.

    Regards,
    Ismael

    in reply to: Mega Menu not working after update to Enfold 3.0.4 #359420

    Hi!

    I checked the dashboard but the Appearance > Menus panel is missing. I also noticed that you installed a menu editor plugin. Please disable that then test the mega menu again.

    Cheers!
    Ismael

    in reply to: Responsive Problems bei 4-spaltig – Ipad Portrait View #359419

    Hi bur2000!

    Thank you for using Enfold.

    Can you please provide a screenshot of the issue? The columns have the same width when I checked it on iPad portrait view.

    Regards,
    Ismael

    Hi!

    You can use this:

    /* iPads ----------- */
    @media only screen and (max-device-width : 959px) {
    .av-inner-masonry-content { display: none !important; }
    }

    Best regards,
    Ismael

    in reply to: Sliders blank after WP update (Firefox, Safari) #359415

    Hi!

    miskostanisic: Thanks for helping out! :)

    @Jaap de Wit: I tried to deactivate all plugins and the layer slider (http://webshoppr.nl/test-page/) started working again. Please deactivate the plugins again one at a time to find the culprit. Did you migrate or transfer the website? The layer slider examples are all blanks. Theme options and configurations including the layer slider are saved on the database and it is quite important that you keep the database intact when transferring the site. In order to do that, we usually recommend the WP Migrate DB plugin.

    Please refer to these links for more info on how to properly migrate your Enfold website from production to development and vice versa:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Best regards,
    Ismael

    in reply to: Deleting content when adding new #359414

    Hi Jake!

    Thank you for using Enfold.

    1.) Did you add any html codes? Make sure that you close the tags properly or it will strip out all contents below.

    2.) Please give us a link to the website. A screenshot of the issue will help. You can use imgur, dropbox, clipular etc.

    Regards,
    Ismael

    in reply to: Social share on Ajax Portfolio Items #359412

    Hi!

    I’m sorry but the share section will not work on ajax preview. Please hire a freelance developer to configure the avia_social_share_link function on includes > helper-social-media.php. Regarding the reload, again, this is beyond the scope of support. You can add wordpress ajax pagination scripts or find a plugin that does to remove page refresh when you click on the pagination.

    Best regards,
    Ismael

    in reply to: wpml – flags and names #359408

    Hi!


    @dtorrents
    : I forgot to mention, after adding the code above. Go to WPML settings then enable the Display the language switcher in the WP Menu. Select the menu which is set as Enfold Main Menu.


    @Guenni007
    : Thanks for helping out! :)

    Cheers!
    Ismael

    in reply to: Toggle accordians #359407

    Hi!

    Thank you for the update.

    Please replace the code with this:

    @media only screen and (min-width: 1024px) {
    #av_section_1 main{
    position: absolute !important;
    top: 150px !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Social Links Area Customisation #359406

    Hi!

    Thank you for using Enfold.

    Use this for second twitter icon:

    #top #wrap_all .av-social-link-twitter.social_icon_3:hover a {
    color: #fff;
    background-color: red !important;
    }

    This one for the second facebook icon:

    #top #wrap_all .av-social-link-facebook.social_icon_4:hover a {
    color: #fff;
    background-color: blue !important;
    }

    Cheers!
    Ismael

    in reply to: Blog and Portfolio url structures #359404

    Hey dweddell!

    Thank you for using Enfold.

    Try this structure on Settings > Permalink > Custom Structure field:

    /blog/%postname%
    

    Change the portfolio item url on the Portfolio Items Base field.

    Regards,
    Ismael

    in reply to: Woocommerce #359402

    Hey bkinckorea!

    Thank you for using Enfold.

    If you don’t mind, please provide a screenshot of what you’re trying to accomplish within the single product page? It’ll help. If you want to make the tab section full width, use this on functions.php:

    add_action('init', 'avf_move_product_output');
    function avf_move_product_output() {
    	remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    	remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    	add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 5 );
    }

    Best regards,
    Ismael

    Hi!

    What is line 64 on your editor? The code doesn’t even have a colon symbol on it. Please get the code here: http://pastebin.com/KZsVBh5r

    Best regards,
    Ismael

    in reply to: Problem with menu when using zTranslate plugin #359400

    Hey Speedskater!

    Thank you for using Enfold.

    I’m sorry but looks like you’re alone on this one. This is the first time someone reported using that plugin. As stated on our support policy, we don’t provide support for third party plugins. Please hire a freelance developer to configure the plugin or use WPML which is compatible with the theme.

    Best regards,
    Ismael

    in reply to: Custom category image #359284

    Hey!

    I think the white screen error occurs because you didn’t remove the function or code on the child theme. Please remove duplicated codes then add it again on the parent theme’s functions.php.

    Regards,
    Ismael

    in reply to: Remove featured image from showing on single product page #359274

    Hey!

    The feature image is hidden on the single product page when I checked the site. Isn’t that what you wanted?

    Regards,
    Ismael

    Hi eyeweb!

    Thank you for using Enfold.

    Add this on function.php:

    function avia_default_title_filter($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$heading = is_singular() ? "h2" : "h2";
    	
    			$output  = "";
    			//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    			$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    			$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    			$output .= "</{$heading}>";
    	
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}

    This will change the h1 tag to h2.

    Regards,
    Ismael

    in reply to: Using Javascript in Layer Slider #359261

    Hi femiojo!

    Thank you for using Enfold.

    I’m sorry but we can’t provide support for third party scripts or plugins as stated on our support policy. Anyway, you can try to add code on the HTML / Video / Audio layer type of the layer slider.

    Cheers!
    Ismael

    in reply to: Error on the Contact Page… #359253

    Hi!

    When you set the post format to link, all you need is the actual url on the text editor where you want to redirect the post. You don’t need to add the html link code. Is that what you’re doing? Instead of:

    <a href="http://www.custom.link">Custom Link</a>
    

    just add this:

    http://www.custom.link
    

    Regards,
    Ismael

    in reply to: Enfold Showcase #359249

    Hi!


    @Raymmar
    : The rubic cube video inspires! Now.. what am I going to do. Hmm. back to the forum. :)


    @ajtj
    : Merry Christmas! :)

    Cheers!
    Ismael

Viewing 30 posts - 53,401 through 53,430 (of 67,505 total)