Forum Replies Created
-
AuthorPosts
-
Hi CounterMind!
Thank you for using our theme.
You find the templates in:
plugins\woocommerce\templates\
e.g. content-product.php
Regards,
GünterDecember 15, 2014 at 2:17 pm in reply to: I want is to remove and delate the thin line just below the Breadcrumb #368266Hey Adolfo Lucio!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS put the following:
.container_wrap { border-top-width: 0 !important; }
Cheers!
GünterHey!
Glad I could help you. Enjoy the theme and feel free to come back with further questions.
Best regards,
GünterHi tvlleaders!
You can identyfy the pages with the unique ID and then use the following code to hide the header, replace the ID with your values:
.page-id-2503 #header, .page-id-2504 #header { display: none !important; } .page-id-2503 #main .page-id-2504 #main { padding-top: 0px !important; }
Cheers!
GünterHey MathiasVie!
Thank you for using our theme.
You can change it with a filter. In functions,php at the end put the following:
function my_search_text( $search_messages ) { // modify the array here return $search_messages; } add_filter( 'avf_ajax_search_messages', 'my_search_text', 10, 1);
The possible values to change you find at
enfold\functions-enfold.php line 105:
$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') );
Cheers!
GünterHey bebetoblu!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS put the following CSS Code. You have 2 divs you can style:
.av_tab_section .tab_content { } .av_tab_section .tab_content .tab_inner_content { }
Don’t forget to add !important to each CSS style.
Cheers!
GünterHi Moniek!
Thank you for using our theme.
Try the following:
h4 { color: #ff5100 !important; }
Best regards,
GünterDecember 15, 2014 at 12:12 pm in reply to: Need to remove title showing when mouse over images #368233Hey Nelson!
Thank you for coming back.
In custom.css or Enfold->Styles->QuickCSS put the following:
.page-id-10 #after_layer_slider_1 .template-page { padding-top: 0 !important; }
To remove the white line:
#after_layer_slider_1 .template-page { padding-top: 0 !important; margin-top: -1px !important; }
Cheers!
GünterHi Hanson!
Thank you for coming back.
Did you uncheck the box “Blog Post Author” in Enfold->BlogLayout in the section “Blog meta elements” ?
Regards,
GünterHi!
Thank you for coming back.
Try to put the following in styles.css of the child theme or Enfold->Styles->QuickCSS field:
.tag-page-post-type-title{ display: none !important; }
Cheers!
GünterDecember 10, 2014 at 3:35 pm in reply to: Mysterious error due to power lost when I saved page #365987Hi Effektid!
Thank you for using our theme.
Are you using a cache plugin? I changed the order of the CSS Code, but I still get the same output.
Did you already try to deactivate all plugins?
You can also try to put the CSS code in styles.css of the childtheme and remove it from QuickCSS.
Regards,
GünterHey Carsten!
Thank you for using our theme.
You have to put the code in styles.css of the child theme.
Have a look at this:
http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/
It will help you to start.
If you still have problems, feel free to come back and give us a link to the pages, so we can assist you.
Best regards,
GünterHey iamconsultingsrl!
Thank you for using our theme.
In custom.css or Enfold->Styles->QUICK-CSS field put the following:
.widget.newsbox .news-time { display: none !important; }
For the image:
.widget.newsbox .news-thumb { display: none !important; }
Cheers!
GünterDecember 9, 2014 at 12:42 pm in reply to: Hidden or delete Date on article under a "Magazine box" #365289Hi MICHAEL!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS try to pu the following:
´ .av-magazine .av-magazine-time { display: none !important; }
If this does not work, can you post us a link to the page pls.
Regards,
GünterHi!
I hope, you enjoy the theme.
Feel free to come back with further inquiries.
Regards,
GünterHey!
Thank you for coming back.
I’m sorry to tell you that it is not possible to find a quick solution for your request.
I found out, that it needs a huge modification in the logic of several functions in this file.
It is possible to implement, but this is customization and bejond the scope of support.
Regards,
GünterHey!
I give you the full code for a quick solution:
Replace the original code
$this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'post__in') ); //resort slides so the id of each slide matches the post id $new_slides = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; }
with:
$this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'rand') ); $resort = false; $new_slides = $this->slides; //resort slides so the id of each slide matches the post id if($resort) { $new_slides = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; } }
Cheers!
GünterHi!
Sorry, I missed that a resorting is taking place a couple of lines below.
Locate the following just below:
//resort slides so the id of each slide matches the post id $new_slides = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; }
and replace with:
$resort = apply_filters( 'avf_logoslider_resort_slides', true); $new_slides = $this->slides; //resort slides so the id of each slide matches the post id if($resort) { $new_slides = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; } }
In functions.php add the following:
add_filter('avf_logoslider_resort_slides', 'my_logoslider_resort'); function my_logoslider_resort($resort) { return false; }
As a quick fix replace:
$resort = apply_filters( 'avf_logoslider_resort_slides', true);
with
$resort = false;
Regards,
GünterHey Siracher!
Thank you for using our theme.
Currently it is not possible out of the box. You have to modify the folllowing core file:
enfold\config-templatebuilder\avia-shortcodes\logoslider.php
Locate line 350:
$this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'post__in') );
and replace with:
$this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'rand') );
This is a quick fix.
I post a filter hook to kriesi, maybe in the next releases it will be integrated:
Replace the code above with:
$args = apply_filters( 'avf_logoslider_select_args', array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'post__in' ) ); $this->slides = get_posts( $args );
In functions.php of the theme or childtheme put the following:
add_filter('avf_logoslider_select_args', 'my_logoslider_select_args'); function my_logoslider_select_args ($args) { $args['orderby'] = 'rand'; return $args; }
If this hook is integrated, you just have to make sure, that you put the code in functions.php.
Regards,
GünterHey tjswarbs78!
Thank you for using our theme.
I think, there is a plugin causing the problem.
Try to deactivate all plugins and check the page.
Then reactivate the plugins one by one.
Regards,
GünterHey nigellim68!
Thank you for using our theme.
In custom.css or Enfold.->Styles->QuickCSS put the following:
.container { padding: 0 !important; }
Best regards,
Günter -
AuthorPosts