Forum Replies Created

Viewing 30 posts - 14,611 through 14,640 (of 14,834 total)
  • Author
    Posts
  • Hey!

    Try adding this to your custom CSS,

    div.product .product_title { margin-top: 100px !important; }
    

    And then add this to the bottom of your /enfold/functions.php file,

    add_action( 'woocommerce_after_single_product_summary', 'the_content', 1 );
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    function woo_remove_product_tabs( $tabs ) {
    	unset( $tabs['description'] );
    	unset( $tabs['reviews'] ); 
    	unset( $tabs['additional_information'] ); 
    	return $tabs;
    }

    Regards,
    Elliott

    Hey sasusc!

    Try adding this to the bottom of your /enfold/functions.php file,

    add_filter( 'the_author_posts_link', 'customization_change_author' );
    function customization_change_author( $link ) {
    	global $post;
    	$author = get_post_meta( $post->ID, 'custom_author', true );
    	if ( $author != null ) { return $author; } else { return $link; }
    }

    And change “custom_author” to whatever key your custom field is set to.

    Best regards,
    Elliott

    in reply to: Anyway Solution to Hide Portfolio Child Categories? #346715

    Hey JaredBurnett!

    Try opening up /enfold/config-templatebuilder/avia-shortcodes/masonry-entries.php and find line 888 which should look like this,

    'terms' 	=> $terms,
    

    Add this beneath it,

    'include_children' => false,
    

    This should exclude the child categories.

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Adjust menu transparency/opacity #346714

    Hey Grant!

    Try adding this to your custom CSS,

    .header_bg { opacity: 1 !important; }
    

    Best regards,
    Elliott

    in reply to: Permalink for custom taxonomy on portfolio entries #346711

    Hi!

    Thanks for posting your solution momon. Let us know if you have any other questions.

    Best regards,
    Elliott

    in reply to: Adding Blogspot and WordPress social buttons #346709

    Hey miramontes!

    See here for more info, https://kriesi.at/support/topic/enfold-theme-options-header-social-icon/.

    Cheers!
    Elliott

    in reply to: Content Deleting upon Update #346704

    Hi!

    Does it happen in all pages or just a certain page? Can you send us a WordPress login so we can take a closer look?

    Best regards,
    Elliott

    in reply to: Problem with Masonry Gallery on iPhone #346699

    Hey!

    The only other thing I can think of would be to have the title and excerpt display on hover. There just isn’t enough space on a small screen to display them on top of the image like that.

    Cheers!
    Elliott

    in reply to: Portfolio subcategories #346697

    Hey!

    Ahh, I see what you mean now. Try adding this to the bottom of your /enfold/functions.php file.

    add_action( 'parse_tax_query', 'customization_portfolio_archive_no_children' );
    function customization_portfolio_archive_no_children( $q ) {
    	if ( is_tax( 'portfolio_entries' ) ) {
    		$q -> tax_query -> queries[0]['include_children'] = 0;
    	}
    }

    Cheers!
    Elliott

    in reply to: Mobile View #346664

    Hey!

    Versuchen Sie dies zu Ihrer benutzerdefinierten CSS,

    @media only screen and (max-width: 767px) {
    .avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow { height: 400px !important; }
    }
    

    Möglicherweise müssen Sie spielen, um mit der 767px Wert ein wenig, um es gut aussehen .

    Grüße,
    Elliott

    Hey!

    Not sure why it’s working for some coordinates and not others. For some coordinates it would only return this for the images, https://maps.gstatic.com/mapfiles/transparent.png.

    I tested this plugin out, http://www.wpgmaps.com/, and your coordinates seem to work fine in it.

    I’ll flag this for the rest of our team to see if they have any idea on what it could be.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.

    Hi!

    It’s working fine on my XAMPP setup. Are you sure you have copied the file to your child theme? Try clearing your browser cache and any caching related plugins you might have installed.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Installed bbpress but can't see forums in the dashboard #346577

    Hi!

    I see them fine on my end. Try clearing your browser cache.

    Cheers!
    Elliott

    in reply to: Gallery Issue White space to the left of rows #346320

    Hey printdesignfactory!

    Can you send us a WordPress login and mark the reply as private so we can take a closer look?

    Regards,
    Elliott

    in reply to: Slider not working #346319

    Hey OriginsSpeak!

    All of the text and other elements are working fine on my end. Try clearing your browser cache and any caching related plugins you might have installed.

    Cheers!
    Elliott

    in reply to: Optimal Size for Color Section Image #346316

    Hey ascensionpresspublishing!

    Perhaps your losing quality when your editing with Photoshop. Send us a link and we’ll take a look.

    Regards,
    Elliott

    in reply to: Quick CSS relative paths #346315

    Hi!

    Glad you got it sorted dmoz. Let us know if you have any other questions.

    Regards,
    Elliott

    in reply to: Portfolio Items Author #346306

    Hi momon!

    I’m not sure if this edit would be feasible in a child theme but you can do this by opening up /enfold/includes/admin/register-portfolio.php and changing line 38 from this,

    'supports' => array('title','thumbnail','excerpt','editor','comments')
    

    To this,

    'supports' => array('title','thumbnail','excerpt','editor','comments', 'author')
    

    EDIT:

    You can try adding this to your child theme’s functions.php file but I’m not sure if this is safe or not so I would wait for another member of our team to check and see if there is a better way.

    add_action('init', 'customization_portfolio_register');
    function customization_portfolio_register()
    {
    	global $avia_config;
     
    	$labels = array(
    		'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    		'singular_name' => _x('Portfolio Entry', 'post type singular name','avia_framework'),
    		'add_new' => _x('Add New', 'portfolio','avia_framework'),
    		'add_new_item' => __('Add New Portfolio Entry','avia_framework'),
    		'edit_item' => __('Edit Portfolio Entry','avia_framework'),
    		'new_item' => __('New Portfolio Entry','avia_framework'),
    		'view_item' => __('View Portfolio Entry','avia_framework'),
    		'search_items' => __('Search Portfolio Entries','avia_framework'),
    		'not_found' =>  __('No Portfolio Entries found','avia_framework'),
    		'not_found_in_trash' => __('No Portfolio Entries found in Trash','avia_framework'),
    		'parent_item_colon' => ''
    	);
     
        $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();    
    
        $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('portfolio-item', 'avia_framework') : $permalinks['portfolio_permalink_base'];
        $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base'];
     
    	$args = array(
    		'labels' => $labels,
    		'public' => true,
    		'show_ui' => true,
    		'capability_type' => 'post',
    		'hierarchical' => false,
    		'rewrite' => array('slug'=>_x($permalinks['portfolio_permalink_base'],'URL slug','avia_framework'), 'with_front'=>true),
    		'query_var' => true,
    		'show_in_nav_menus'=> true,
    		'taxonomies' => array('post_tag'),
    		'supports' => array('title','thumbnail','excerpt','editor','comments', 'author')
    	);
    	
    	
    	$args = apply_filters('avf_portfolio_cpt_args', $args);
    	$avia_config['custom_post']['portfolio']['args'] = $args;
     
    	register_post_type( 'portfolio' , $args );
    
    	$tax_args = array(	
    		"hierarchical" => true,
    		"label" => "Portfolio Categories",
    		"singular_label" => "Portfolio Category",
    		"rewrite" => array('slug'=>_x($permalinks['portfolio_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true),
    		"query_var" => true,
    		"supports" => array('title', 'editor', 'author' )
    	);
     
     	$avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args;
    
    	register_taxonomy("portfolio_entries", array("portfolio"), $tax_args);
    
    	//deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
    	remove_action('wp_loaded', 'avia_flush_rewrites');
    }

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Displaying Advanced Custom Fields in Post Slider #346284

    Hi kifela!

    Add this to line 420,

    $output .= the_field('field_name');
    

    I’m not sure if that function echoes or returns. If it returns then your good but if it echoes then it’s going to display outside of the content slider. There is probably a PHP trick out there for that but I do not know of it. You’ll want to contact the plugin author in that case or use get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta.

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Avia Layout Builder not working #346279

    Hey!


    @ddndesign
    , Your using Enfold 2.4.1 but the latest version is 3.0.2. Go ahead and update to fix the problem.


    @web93design
    , Can you send us a WordPress login so we can take a closer look? Make sure to mark your reply as private.

    Cheers!
    Elliott

    in reply to: Menu issues with theme update #346274

    Hey GOWD!

    It looks like it’s because of some custom CSS your using,

    .responsive .container {
        max-width: 80%;
    }

    Yes I think ubermenu should be working fine. Go ahead and activate it and we’ll take a look. If you have time then a screenshot highlighting the problem would be great.

    Cheers!
    Elliott

    in reply to: Tri.be Event Calendar Pro – Single Event view… MESSY #346254

    Hey!

    Open up /enfold/config-events-calendar/views/single-event.php and on lines 31 – 75 you will see the content for that section. What you’ll want to do is just delete all of the divs you see on those lines. For example,

    <div class='av-single-event-meta-bar'>
    </div>

    That will get rid of the columns and have everything display beneath each other.

    Regards,
    Elliott

    in reply to: EasySlider the wrong size #346235

    Hi!

    Add this to the style tag as well,

    .flex_column .avia-slideshow { margin-bottom: 0px !important; }
    .entry-content-wrapper .flex_column { margin-top: 3px !important; }

    Cheers!
    Elliott

    in reply to: Mouse over effect #346230

    Hi!

    It’s a little too advanced to learn it overnight. You would want to hire a freelancer to help you out. I recommend using Werkpress which you can contact through this form, http://kriesi.at/contact/customization.

    Best regards,
    Elliott

    in reply to: Editing Woocommerce single product page and customer emails. #346229

    Hi!

    Unfortunately I don’t see an easy way of doing that. We can use CSS to move it around but that will affect all of your product pages and I’m sure you will have different descriptions for each product. The grey part is because it’s a tab where the user can switch between description and reviews. Are you wanting to just get rid of all of that and display the description on it’s own?

    Best regards,
    Elliott

    in reply to: Gallery Break #346214

    Hi erussell!

    Try splitting it up into two gallery shortcodes. If your still seeing the problem then send us a WordPress login so we can take a closer look. Be sure to mark the reply as private.

    Cheers!
    Elliott

    in reply to: style sub menu in content area #346204

    Hey Morendo_Memoria!

    You can target it with this class,

    #sub_menu1 .sub-menu {  }
    

    They appear full height to me. Make sure to target the links like so,

    #sub_menu1 .sub-menu a:hover { background: red !important; }
    

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Drop down menu size problems #346195

    Hi dereknicholson!

    You currently have that one set to be a mega menu.

    Uncheck the mega menu option when editing the menu link to have it return to normal.

    Cheers!
    Elliott

    in reply to: Related post over Tags #346185

    Hey adrianej!

    Open up /enfold/includes/loop-index.php and add this on line 200,

    //show related posts based on tags if there are any
    get_template_part( 'includes/related-posts');
    

    Next open up /enfold/single.php and comment out line 40,

    //get_template_part( 'includes/related-posts');
    

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Applying an individual style to an avia button #346178

    Hi Annemarie!

    Try adding this to your custom CSS,

    .avia-button { background: transparent !important; border: #333333 2px solid !important; color: #333333 !important;
    

    If you edit the button and switch to the “Colors” tab then the “Dark Transparent” style is very close to what your trying to set it to.

    Regards,
    Elliott

Viewing 30 posts - 14,611 through 14,640 (of 14,834 total)