Forum Replies Created
-
AuthorPosts
-
Hi!
What fatal error did you get? if you are only seeing a blank page try enabling DEBUG:
http://codex.wordpress.org/WP_DEBUGBest regards,
JosueHi!
There is no logo hover effect as far as i know, what are you referring to exactly?
Best regards,
JosueFebruary 4, 2015 at 6:42 am in reply to: Javascript registered and enqueued, but how do you call it? #390529Hey!
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_footerhook:function custom_func() { // code here } add_action('wp_footer', 'custom_func');Best regards,
JosueFebruary 4, 2015 at 6:40 am in reply to: Max site width always 910px after updating to 3.0.5 #390526Hey @justinbiggsdesign!
Should work fine now, you had a typo in Quick CSS (missing closing bracket).
Best regards,
JosueFebruary 4, 2015 at 6:31 am in reply to: How can I add some text to the right of the logo area? #390523Hi!
Try with the
avf_logo_final_outputfilter:
https://kriesi.at/support/topic/add-image-to-header-2/Cheers!
JosueNo problem, glad to help :)
Regards,
JosueFebruary 4, 2015 at 6:17 am in reply to: Social Icons turn to boxes after failed @font-family font change. #390518Hi,
Can you please hand me a temporary FTP account? i’ll attempt to fix it through .htaccess.
Regards,
JosueHi,
Can you please create us a temporary FTP account? post it here as a private reply.
Regards,
JosueHi!
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!
JosueHi Jaco,
Can you please create us a temporary FTP account? post it here as a private reply.
Regards,
JosueFebruary 4, 2015 at 4:52 am in reply to: Position of logo and menu since update version 3.0.5 #390502Hi!
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,
JosueHi!
I logged to your site and was able to edit Products without issue, are you still experiencing this problem?
Best regards,
JosueHi!
Can you post a screenshot of your view? here’s how it looks on my end – http://screencast.com/t/qzwNfuKvbf
Regards,
JosueFebruary 4, 2015 at 1:38 am in reply to: Social Icons turn to boxes after failed @font-family font change. #390481Hey!
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!
JosueHi!
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_scriptRegards,
JosueHi!
It’s fixed, please review your homepage.
Best regards,
JosueHi!
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,
JosueHi,
Go to Appearance > Editor > Theme Functions (functions.php) and paste the code at the end.
Regards,
JosueHi!
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-ReferenceBest regards,
JosueHey!
The code i suggested won’t change the lightbox functionality at all, not sure what you are referring to.
Cheers!
JosueHey Mauro!
Try adding this code to the Quick CSS:
.archive.woocommerce .page-thumb { display: none; }Cheers!
JosueHola,
¿Has probado si sucede en otro ordenador?
Saludos,
JosueYou 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_DatabaseBest regards,
JosueHi!
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,
JosueHi,
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,
JosueHi!
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,-5612, 34, 56 would be the categories IDs you want to exclude.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey 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,
JosueHey!
Try adding this code to the Quick CSS:
#main .content { min-height: 800px; }Cheers!
JosueHey!
Drag a Text Block element and check if the insert download button appears there.
Regards,
Josue -
AuthorPosts
