Forum Replies Created

Viewing 30 posts - 8,611 through 8,640 (of 23,923 total)
  • Author
    Posts
  • in reply to: PHP Code – FATAL ERROR #390533

    Hi!

    What fatal error did you get? if you are only seeing a blank page try enabling DEBUG:
    http://codex.wordpress.org/WP_DEBUG

    Best regards,
    Josue

    in reply to: Logo hover #390531

    Hi!

    There is no logo hover effect as far as i know, what are you referring to exactly?

    Best regards,
    Josue

    in reply to: Javascript registered and enqueued, but how do you call it? #390529

    Hey!

    1. I’d suggest binding the event in the JS file instead of the form tag, you can use the following:
    http://api.jquery.com/submit/

    2. You can use the wp_footer hook:

    function custom_func() {
    	// code here
    }
    add_action('wp_footer', 'custom_func');
    

    Best regards,
    Josue

    in reply to: Max site width always 910px after updating to 3.0.5 #390526

    Hey @justinbiggsdesign!

    Should work fine now, you had a typo in Quick CSS (missing closing bracket).

    Best regards,
    Josue

    in reply to: How can I add some text to the right of the logo area? #390523

    Hi!

    Try with the avf_logo_final_output filter:
    https://kriesi.at/support/topic/add-image-to-header-2/

    Cheers!
    Josue

    in reply to: Is there a way to make a sticky socket? #390519

    No problem, glad to help :)

    Regards,
    Josue

    Hi,

    Can you please hand me a temporary FTP account? i’ll attempt to fix it through .htaccess.

    Regards,
    Josue

    in reply to: Translation Issues #390516

    Hi,

    Can you please create us a temporary FTP account? post it here as a private reply.

    Regards,
    Josue

    in reply to: strange sidebar in bottom of page #390513

    Hi!

    You can disable the translation for the Theme Options by opening functions.php and moving line 104 to line 78 – http://screencast.com/t/NaHYTtsyM

    Cheers!
    Josue

    in reply to: Date picker in Contactform #390510

    Hi Jaco,

    Can you please create us a temporary FTP account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Position of logo and menu since update version 3.0.5 #390502

    Hi!

    Yeah that’s because the German translation is not 100% complete, you can disable it (for the Theme Options only) if you want, open functions.php and move line 104 to line 78 – http://screencast.com/t/NaHYTtsyM

    Best regards,
    Josue

    in reply to: Enfold + WMLP with Woocommerce #390500

    Hi!

    I logged to your site and was able to edit Products without issue, are you still experiencing this problem?

    Best regards,
    Josue

    in reply to: Guidance on tight column layout #390494

    Hi!

    Can you post a screenshot of your view? here’s how it looks on my end – http://screencast.com/t/qzwNfuKvbf

    Regards,
    Josue

    Hey!

    Try adding this code to the Quick CSS:

    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('http://www.lukemarshallimages.com/shoot/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('http://www.lukemarshallimages.com/shoot/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('http://www.lukemarshallimages.com/shoot/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('http://www.lukemarshallimages.com/shoot/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('http://www.lukemarshallimages.com/shoot/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    

    Cheers! 
    Josue

    in reply to: Custom jquery #390469

    Hi!

    The problem may be that the custom.js file is never being included, add the following to child functions.php:

    function enqueue_custom_js() {
       wp_enqueue_script( 'avia-custom-js', get_stylesheet_directory_uri().'/js/custom.js', array('jquery'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'enqueue_custom_js', 100 );

    Reference:
    http://codex.wordpress.org/Function_Reference/wp_enqueue_script

    Regards,
    Josue

    in reply to: Color section showing up in footer on home page.. #390465

    Hi!

    It’s fixed, please review your homepage.

    Best regards,
    Josue

    in reply to: Submenu on Click #390385

    Hi!

    Change this too:

    megaItems.each(function(i){
    
    	$(this).hover(
    
    		function()
    		{
    			delayCheck[i] = true;
    			setTimeout(function(){megaDivShow(i); },options.delay);
    		},
    
    		function()
    		{
    			delayCheck[i] = false;
    			setTimeout(function(){megaDivHide(i); },options.delay);
    		}
    	);
    });

    To:

    megaItems.each(function(i){
    
    	$(this).click(
    
    		function()
    		{
    			delayCheck[i] = true;
    			setTimeout(function(){megaDivShow(i); },options.delay);
    		},
    
    		function()
    		{
    			delayCheck[i] = false;
    			setTimeout(function(){megaDivHide(i); },options.delay);
    		}
    	);
    });

    Best regards,
    Josue

    in reply to: contact form not sending message #390346

    Hi,

    Go to Appearance > Editor > Theme Functions (functions.php) and paste the code at the end.

    Regards,
    Josue

    in reply to: can not insert download #390333

    Hi!

    In that case you’d need to insert the Download element via [shortcode], here’s a reference:
    https://github.com/download-monitor/download-monitor/wiki/Shortcode-Reference

    Best regards,
    Josue

    in reply to: Is there a way to make a sticky socket? #390330

    Hey!

    The code i suggested won’t change the lightbox functionality at all, not sure what you are referring to.

    Cheers!
    Josue

    in reply to: Large 1200px category headers images #390329

    Hey Mauro!

    Try adding this code to the Quick CSS:

    .archive.woocommerce .page-thumb {
        display: none;
    }

    Cheers! 
    Josue

    in reply to: Actualización del carrito woocommerce #390328

    Hola,

    ¿Has probado si sucede en otro ordenador?

    Saludos,
    Josue

    in reply to: Child Theme #390322

    You shouldn’t as theme settings are stored in the database, if you want however you can also backup that:
    http://codex.wordpress.org/Backing_Up_Your_Database

    Best regards,
    Josue

    in reply to: Child Theme #389930

    Hi!

    I’d suggest the following:
    1. Perform a backup of your current theme folder via FTP.
    2. Update the parent theme.
    3. Create and activate the child theme.

    So if something goes wrong you can always rollback to the old theme.

    Best regards,
    Josue

    in reply to: Child Theme #389897

    Hi,

    The recommended procedure is explained in this video. Be aware though that if you have modified the theme core files having a child theme won’t prevent an update to overwrite those modifications.

    If you could specify what exactly has been modified we can help you transfer those mods to the child theme set-up.

    Regards,
    Josue

    in reply to: Limiting the Combo Widget to the last seven days? #389891

    Hi!

    Copy the following code to your child theme functions.php:

    class avia_combo_widget extends WP_Widget {
    
    	function avia_combo_widget() {
    		//Constructor
    		$widget_ops = array('classname' => 'avia_combo_widget', 'description' => 'A widget that displays your popular posts, recent posts, recent comments and a tagcloud' );
    		$this->WP_Widget( 'avia_combo_widget', THEMENAME.' Combo Widget', $widget_ops );
    	}
    
    	function widget($args, $instance)
    	{
    		// prints the widget
    
    		extract($args, EXTR_SKIP);
    		$posts = empty($instance['count']) ? 4 : $instance['count'];
    
    		echo $before_widget;
    		echo "<div class='tabcontainer border_tabs top_tab tab_initial_open tab_initial_open__1'>";
    
    		echo '<div class="tab first_tab active_tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>';
    		echo "<div class='tab_content active_tab_content'>";
    		avia_get_post_list( array('cat'=>'', 'orderby'=> 'comment_count','posts_per_page' => $posts, 'date_query' => array( array( 'after'=>'1 week ago') ) ) );
    		echo "</div>";
    
    		echo '<div class="tab widget_tab_recent"><span>'.__('Recent', 'avia_framework').'</span></div>';
    		echo "<div class='tab_content'>";
    		avia_get_post_list( array('cat'=>'', 'orderby'=> 'post_date','showposts' => $posts, 'date_query' => array( array( 'after'=>'1 week ago') ) ) );
    		echo "</div>";
    
    		echo '<div class="tab widget_tab_comments"><span>'.__('Comments', 'avia_framework').'</span></div>';
    		echo "<div class='tab_content'>";
    		avia_get_comment_list( array('number' => $posts, 'status' => 'approve', 'order' => 'DESC', 'date_query' => array( array( 'after'=>'1 week ago') ) ) );
    		echo "</div>";
    
    		echo '<div class="tab last_tab widget_tab_tags"><span>'.__('Tags', 'avia_framework').'</span></div>';
    		echo "<div class='tab_content tagcloud'>";
    		wp_tag_cloud('smallest=12&largest=12&unit=px');
    		echo "</div>";
    
    		echo "</div>";
    		echo $after_widget;
    	}
    
    	function update($new_instance, $old_instance)
    	{
    		$instance = $old_instance;
    		foreach($new_instance as $key=>$value)
    		{
    			$instance[$key]	= strip_tags($new_instance[$key]);
    		}
    
    		return $instance;
    	}
    
    	function form($instance) {
    		//widgetform in backend
    
    		$instance = wp_parse_args( (array) $instance, array('count' => 4) );
    		if(!is_numeric($instance['count'])) $instance['count'] = 4;
    
    ?>
    		<p>
    		<label for="<?php echo $this->get_field_id('count'); ?>">Number of posts you want to display:
    		<input class="widefat" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" type="text" value="<?php echo esc_attr($instance['count']); ?>" /></label></p>
    
    	<?php
    	}
    }

    That will override the default combo widget class with a custom one. I’ve already modified it to query only posts from the last seven days, but you’d need to set the categories you don’t want in the query, look for the two 'cat'=>'' in the code and fill it this way:

    cat=-12,-34,-56
    

    12, 34, 56 would be the categories IDs you want to exclude.

    Regards,
    Josue

    in reply to: Color section height problem #389878

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Child Theme #389876

    Hey Robert!

    Are you using the latest version of Enfold? if so, you can import the parent theme settings into the child theme panel using this button – http://screencast.com/t/K1YR7IjChV

    Best regards,
    Josue

    in reply to: Is there a way to make a sticky socket? #389874

    Hey!

    Try adding this code to the Quick CSS:

    #main .content {
        min-height: 800px;
    }

    Cheers! 
    Josue

    in reply to: can not insert download #389873

    Hey!

    Drag a Text Block element and check if the insert download button appears there.

    Regards,
    Josue

Viewing 30 posts - 8,611 through 8,640 (of 23,923 total)