Forum Replies Created
-
AuthorPosts
-
Hi elames!
Thank you for coming back.
Try the following in QuickCSS and adjust the values:
.av-special-heading.av-special-heading-h3.avia-builder-el-8.el_before_av_textblock.avia-builder-el-first { margin-bottom: -80px !important; } .avia-builder-el-7 .avia_textblock > a { float: right !important; margin-right: 107px !important; margin-top: -47px !important; }
Regards,
GünterHey!
Thank you for coming back.
You can try to change the code from the post above to something like:
function avia_category_content_filter($current_post) { if( is_single() ) { global $more; $more = 0; $current_post['content'] = get_the_excerpt(); $current_post['content'] .= get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); } return $current_post; }
Cheers!
GünterJanuary 22, 2015 at 11:33 am in reply to: Import dummy data in child theme or in parent theme? #383597Hi!
There is a syntax error in the code above. Replace it with the following:
$.fn.randomize = function(childElem) { return this.each(function() { var $this = $(this); var elems = $this.children(childElem); elems.sort(function() { return (Math.round(Math.random())-0.5); }); $this.remove(childElem); for(var i=0; i < elems.length; i++) $this.append(elems[i]); }); } (jQuery);
It should not make any difference, where you place this code.
If you still recieve errors, try to place it at the beginning (or at least before the code snippet that uses randomize).
Cheers!
GünterHi!
Thank you for coming back.
Have a look at this post:
Maybe it will help you.
But actually it does not make sense to cut off the text on a single post page without any further logic behind.
Cheers!
GünterHi!
Danke für das Feedback.
Vermutlich war der Browsercache nicht geleert oder ein Cache am Server war noch aktiv.
Viel Freude mit dem Theme.
Best regards,
GünterJanuary 21, 2015 at 4:25 pm in reply to: Sequel: cut excerpt off at more tag instead of using word/character count #383087Hey Marc!
Thanky you for using our theme and your feedback.
No, there is no better way, as this filter is always called in comjunction with the post type. WP does not support to add filters with wild cards.
Cheers!
GünterHi espressotech!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS put the following:
.title_container .breadcrumb { float: right !important; position: relative !important; }
Cheers!
GünterHey!
Thank you for the feedback.
Glad you could fix the problem.
Enjoy the theme.
Cheers!
GünterHey hookedonweb!
Thank you for using our theme.
Have a look at:
https://kriesi.at/support/topic/portfolio-tags-and-photo-galleries-for-images-with-different-sizes/
Maybe this will help you.
Regards,
GünterHey Jean-Francois!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:
.iconbox_content { line-height: 20px !important; } .iconbox_content ul { margin-bottom: 5px !important; }
For margin you can also use negative numbers.
Regards,
GünterHi greengraphicsvienna!
Thank you for coming back.
It is not a task to make out of the box.
Have a look at:
http://stackoverflow.com/questions/12661124/how-to-apply-hovering-on-html-area-tag
http://stackoverflow.com/questions/17857906/html-map-area-hover-effectMaybe it can help you.
Cheers!
GünterHi diefleischerei!
In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:
#top .av-icon-display.av-masonry-media { top: -145px !important; }
If you want to limit it to the given page:
.page-id-2590 #top .av-icon-display.av-masonry-media { top: -145px !important; }
Cheers!
GünterJanuary 21, 2015 at 3:31 pm in reply to: Import dummy data in child theme or in parent theme? #383029Hey!
Thank you for using our theme.
I would recommend to import it in the child theme, if you want to work with a child theme and use elements of the demo.
Best regards,
GünterHi tambo12!
Thank you for using our theme.
Something is breaking the code.
Try to disable all plugins.
Download the theme again from themeforest and reinstall it again (also try to do it via FTP)
Reactivate one plugin after the other.If you added code manually, also remove this and try to add the code one by one.
Cheers!
GünterHey TiinaJanson!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS try to put the following:
.av-masonry-date { display: none !important; }
Regards,
GünterHi guyg!
Thank you for using our theme.
On the link you sent us the cells are aligned as you wish (on FF). Did you solve the problem already?
Best regards,
GünterHi xyzb!
Thank you for coming back.
In functions.php (child or parent theme) add the following:
add_filter('avf_ajax_search_messages', 'my_search_text', 10,2); function my_search_text ($search_messages, $search_query) { // possible values to change: // // $search_messages = array( // 'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'), // 'another_search_term' => __("Please try another search term", 'avia_framework'), // 'time_format' => get_option('date_format'), // 'all_results_query' => http_build_query($_REQUEST), // 'all_results_link' => home_url('?' . http_build_query($_REQUEST)), // 'view_all_results' => __('View all results','avia_framework') // ); $search_messages ['no_criteria_matched'] = 'your message text to replace'; return $search_messages; }
Enter a line for each message to replace.
Cheers!
GünterHey htarrant!
Thank you for using our theme.
There is a JavaScript error stopping the loading of the scripts:
js.src = “//connect.facebook.net/en_US/all.js#xfbml=1&appId=1488847701328593
1488847701328593
1488847701328593”;`
`Try to deactivate plugins and reactivate one by one and check to find out the plugin causing this error.
Best regards,
GünterHi robert-s!
Thank you for using our theme.
Use custom.css or Enfold->Styles->QuickCSS fiekl and adjust the values.
If you want to reduce the left margin:
.inner_sidebar { margin-left: 30px !important; }
For the vertical distance between the widgets:
.widget { padding: 20px 0 !important; }
Cheers!
GünterHi hloft!
Thank you for coming back.
If you are using a child theme, put in functions.php of the child theme at the bottom:
if(!function_exists('avia_append_search_nav')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items; if(avia_get_option('header_position', 'header_top') != "header_top") return $items; if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items = '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>' . $items; } return $items; } }
If you are using enfold parent theme, then put this code at the beginning of functions.php.
Best regards,
GünterHi Munford!
Thank you for coming back.
Check the QuickCSS field. If it is empty, it had been overwritten (probably by mistake).
If you do not have a backup of this field, you only can ask your provider for a fallback to an earlier stage, when it worked.
Best regards,
GünterHey mcraig77!
Thank you for coming back.
On the screenshot the red background on both sides is at the top. Can you pls point out exactly what you want.
We would also need a link to to that page to assist you.
Best regards,
GünterHey!
Danke für die Rückmeldung.
Versuchen Sie das folgende:
h1, h2 { text-decoration: none !important; }
So werden h1 und h2 so dargestellt, wie sie eingegeben sind.
Sollte das nicht gehen, müsste man dann auf konkreten Seiten schauen, warum nicht.
Best regards,
Günter -
AuthorPosts