Forum Replies Created

Viewing 30 posts - 14,371 through 14,400 (of 14,834 total)
  • Author
    Posts
  • in reply to: Problems with Google AdWords! #349556

    Hey!

    I’m not seeing them. Which page of your site are you viewing? Does it only happen on your mobile device?

    Regards,
    Elliott

    in reply to: Logo Spacing Above and Below Logo in Header #349547

    Hi!

    Yes, you can center the logo in Dashboard > Enfold > Header > Menu and Logo Position.

    Regards,
    Elliott

    in reply to: Enfold: CSS problems after migration #349543

    Hi Jan!

    Your getting a 403 on this, http://www.provisage.eu/wp-content/uploads/dynamic_avia/enfold.css?ver=5461bde88dc3d.

    Let’s try the following.

    1. Create a backup.
    2. Update Enfold to the latest version.
    3. Hit the “Reset All Options” button in Dashboard > Enfold.
    4. On your previous site export your theme settings in Dashboard > Enfold > Import / Export and then import them in the new server.

    Regards,
    Elliott

    in reply to: Social Profiles – Link Target ("_blank") #349540

    Hey mp3dk!

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

    add_filter( 'wp_footer', 'enfold_customization_email_target_blank' );
    function enfold_customization_prevent_enter_submit() {
    	?>
    	<script type = "text/javascript">
    	jQuery(document).ready(function() {
    	  jQuery('.av-social-link-mail a').attr('target', '_blank');
    	});
    	</script>
    	<?php
    }

    Regards,
    Elliott

    in reply to: Single Post #349532

    Hey!

    Try adding this to your custom CSS.

    .main-title {
        font-weight: bold !important;
    }

    Best regards,
    Elliott

    Hey ML!

    They are designed to hide when it runs into the copyright text. If you want to have it display all the time then add this to your custom CSS.

    .responsive #socket .sub_menu_socket { display: block !important; }
    

    Cheers!
    Elliott

    in reply to: contact form- pressing enter problem #349520

    Hey graphico!

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

    add_filter( 'wp_footer', 'enfold_customization_prevent_enter_submit' );
    function enfold_customization_prevent_enter_submit() {
    	?>
    	<script type = "text/javascript">
    	jQuery(document).ready(function() {
    	  jQuery(window).keydown(function(event){
    		if(event.keyCode == 13) {
    		  event.preventDefault();
    		  return false;
    		}
    	  });
    	});
    	</script>
    	<?php
    }

    Cheers!
    Elliott

    in reply to: Edit or Add menu and Setting option not working #349508

    Hey Andy!

    A 500 internal server error is usually a problem with the server. Does this happen in the default theme as well? Check your server error logs and paste the full error here in a private reply please.

    Also be sure to deactivate all plugins while testing.

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Enfold Styling Colour Scheme not working #349506

    Hi!

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

    Best regards,
    Elliott

    Hey!

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

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Column width #349493

    Hi!

    When you say columns I think you are referring to the main menu.

    You have your menu set in Dashboard > Appearance > Menus to “automatically add new top top-level pages to this menu” which I think is what is causing all of the duplicate entries in your menu. I went ahead and created a new menu for you.

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Yoast SEO Plugin & Enfold date meta tag #349479

    Hi havi!

    Try opening up /enfold/includes/loop-index.php and find line 134.

    echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
    

    And change it to this.

    //echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
    

    If you want to do this in a child theme then copy the file over to your child theme and then do the edit. This will remove the date meta from your single posts.

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Swapping logo on mobile #349471

    Hi!

    It looks fine on my end. If your still seeing it as 50% and not negative 50% then be sure to clear your browser cache and any caching related plugins you might have installed.

    Cheers!
    Elliott

    in reply to: Enfold, WooCommerce Related products column number #349468

    Hey!

    That’s right, let us know if you have any other questions.

    Regards,
    Elliott

    in reply to: Change CSS directly on files #349448

    Hey!

    Try clearing your browser cache and any caching related plugins you may have installed. If your still having problems then send us a WordPress login and mark your reply as private and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Empty Post Page #349445

    Hey!

    I didn’t see anything that could be causing that. Let’s try the following.

    1. Make sure all plugins are deactivated while testing.

    2. Delete your .htaccess file and then navigate to Dashboard > Settings > Permalinks and update them. Pay special attention to any messages that WordPress gives you such as .htaccess is not writable, etc etc.

    3. Try creating a backup and completely delete the theme before downloading + uploading a fresh copy from themeforest.

    Best regards,
    Elliott

    in reply to: Issues with sidebar #349151

    Hi!

    It’s displaying fine on my end. Did you get this sorted?

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: WPML + section hastags #349146

    Hey!

    Are you just trying to get it to scroll down to the events section? In that case you do not need add the language just set the ID as the URL.

    <a href = "#name">Click me</a>
    

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Event Calendar Issues #349139

    Hi!

    I see what you mean now. Your using the post slider there with the events category correct? Your markup looks a bit different from the default, your missing comments, etc etc. Have you done customizations?

    I couldn’t check your theme version because your minifying everything but if your not using Enfold 3.0.2 then be sure to update.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Swapping logo on mobile #349125

    Hi!

    In your source code I see this.

    .responsive .logo img { transform: translate(50%, 0px) !important; left: 50% !important; }
    

    But it needs to be a negative -50% like in my previous post.

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Css styling #349119

    Hi!

    Hmm, I’m having trouble logging in. Is the information correct?

    Best regards,
    Elliott

    in reply to: How to hide the comment form itself? #349116

    Hi!

    Your welcome. Let us know if you have any other questions.

    Best regards,
    Elliott

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

    Hi parperei!

    Please see here, https://kriesi.at/support/topic/custom-social-bar-icons-replaceadd-enfold/#post-304134. You can do this in your child theme functions.php file.

    Best regards,
    Elliott

    in reply to: Opt in #349109

    Hi!

    Alrighty, in that case I would try out the feedburner plugin, https://wordpress.org/plugins/feedburner-email-subscription/. It has a widget and shortcode.

    Cheers!
    Elliott

    in reply to: Cannot get fullwidth slider to be full width #349108

    Hi jenki!

    Those elements were not meant to be used in a color section. For the LayerSlider you can set a colored background or an image background to it in the slider settings so it’s pretty much just like a color section anyway.

    And for the fullwidth easy slider try using just the easy slider instead. You can place that inside a color section.

    Best regards,
    Elliott

    in reply to: Responsive Vertical Align for Relative Div in a Color Section #349104

    Hey SobeIT!

    It looks fine on my end. Did you get this fixed? If your still having problems then take a screenshot and highlight what is going on so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Bug in List Style #349101

    Hi!

    Try adding this to your custom CSS,

    .entry-content-wrapper ul { list-style: disc !important; margin-left: 15px !important; }
    

    As for the ordered list I’m not sure what you want to do with it. It looks fine on my end. Can you take a screenshot and highlight what your trying to do so we can get a better idea?

    Cheers!
    Elliott

    in reply to: Remove Post Navigation for some categories #349081

    Hey bicounet!

    Try adding this to the functions.php file of your child theme.

    function avia_post_nav($same_category = false, $taxonomy = 'category')
    {
    	global $wp_version;
    		$settings = array();
    		$settings['same_category'] = $same_category;
    		$settings['excluded_terms'] = '';
    		$settings['wpversion'] = $wp_version;
    	
    	//dont display if a fullscreen slider is available since they overlap 
    	if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || 
    		class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
    	$settings['type'] = get_post_type();
    	$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    	if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    	if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    		$settings = apply_filters('avia_post_nav_settings', $settings);
    		if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    
    		if(version_compare($settings['wpversion'], '3.8', '>=' ))
    		{
    			$entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    			$entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    		}
    		else
    		{
    			$entries['prev'] = get_previous_post($settings['same_category']);
    			$entries['next'] = get_next_post($settings['same_category']);
    		}
    		
    	$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
    	$output = "";
    
    	foreach ($entries as $key => $entry)
    	{
    		if(empty($entry)) continue;
    		$the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
    		$link 		= isset($entry->av_custom_link)  ? $entry->av_custom_link  : get_permalink($entry->ID);
    		$image 		= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
    		
    		$tc1   = $tc2 = "";
    		$class = $image ? "with-image" : "without-image";
    
    		$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		$output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		$output .= "    <span class='entry-info-wrap'>";
    		$output .= "        <span class='entry-info'>";
    		$tc1     = "            <span class='entry-title'>{$the_title}</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
    		$output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;
    		$output .= "        </span>";
    		$output .= "    </span>";
    		$output .= "</a>";
    	}
    	if ( !in_category( array( 'uncategorized', 'work', 'humor' ) ) ) { return $output; }
    }
    

    And near the bottom of that code you should see this.

    if ( !in_category( array( 'uncategorized', 'work', 'humor' ) ) ) { return $output; }
    

    You can add your category slugs there.

    Or if you do not want to use a child theme then you can find that line on 393 in /enfold/functions-enfold.php.

    Cheers!
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Enfold, WooCommerce Related products column number #349080

    Hey raineysw!

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

    add_action( 'init', 'enfold_customization_change_related_products' );
    function enfold_customization_change_related_products() {
    	global $avia_config;
    	$avia_config['shop_single_column'] = 2;
    	$avia_config['shop_single_column_items'] = 4;
    }

    Cheers!
    Elliott

    in reply to: Direct link to PDF redirects wrongly to portfolio #349075

    Hi jetel!

    That is very weird, not sure what could be going on there. I see it happening in Chrome and IE as well but not Firefox.

    1. What happens when you link to a different PDF file?
    2. Does it do the same when you create a new page with nothing but the link inside?
    3. What happens in the default WordPress theme?

    Make sure all plugins are deactivated while testing.

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
Viewing 30 posts - 14,371 through 14,400 (of 14,834 total)