Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #97530
    Fabio
    Participant

    I have 2 issues:

    My Feature Post Slider is displaying html in the excerpt. For example, for post 1:

    After the number of words allowed in the excerpt it states <span class=”readmore”>Read More…</span>

    If I reset excerpt length to 0 it still reads the html line (without any excerpt words from actual post).

    Also, my images do not align properly, in either True or Wait formats. Do I have to crop them all to same size?

    #97534
    Fabio
    Participant

    Ok, I figured out the issue with the images. They need to be the same width.

    However, I am still getting html on my excerpt. The html is basically the link info for the “Read More…” tag/button. Can’t figure out why it is showing, however.

    #97537
    Mahesh
    Keymaster

    latinoliteratures:
    Hi Fabio,

    Thank you for using Fabulous Fluid Pro theme.
    1. For excerpt issue, please refer to this thread:
    https://catchthemes.com/support-forum/topic/html-tag-in-slider-excerpt-text/#post-97517
    2. Image align issue:
    The recommended size for slider iamage is Width: 1680px Height: 720px, please use the image with same size as far as possible. Exact size is not necessary as long as the image has same aspect ratio, you are good to go.

    Let me know if any problem.

    Regards,
    Mahesh

    #97567
    Fabio
    Participant

    Hi Mahesh,

    Thanks for your response.

    I went to the thread you recommended to fix the Feature Post Slider issue, but I failed to see a sample child theme for the Fabulous Fluid Pro Theme (which is the one I am using). Would a different file work? Please advice.

    #97633
    Mahesh
    Keymaster

    @latinoliteratures: Yes, you can use any different file too. Just make sure you’ve followed along the instructions on creating child theme as of HERE.

    Regards,
    Mahesh

    #97645
    Fabio
    Participant

    I tried everything and it didn’t work. Then I downloaded the one-click child theme plugin and it reset all of my modifications.

    This is a pain in the ass.

    I thought it was going to be simple by buying a theme.

    I am frustrated.

    #97653
    Fabio
    Participant

    I WENT AHEAD AND USED THE PLUGIN YOU RECOMMENDED FOR BUILDING CHILD THEMES. I MADE ONE FOR FABULOUS FLUID PRO.

    //THE FOLLOWING IS MY STYLE.CSS FILE//

    /*
    Theme Name: FabulousFluid-Pro-Child
    Description:
    Author: admin
    Template: fabulous-fluid-pro

    (optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
    */

    //THE FOLLOWING IS MY FUNCTIONS.PHP FILE AFTER I INPUT YOUR CODE//

    <?php
    //
    // Recommended way to include parent theme styles.
    // (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
    //
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }
    //
    // Your code goes below
    //
    function fabulous_fluid_page_slider() {
    $quantity = apply_filters( ‘fabulous_fluid_get_option’, ‘featured_slide_number’ );

    $excerpt_more_text = apply_filters( ‘fabulous_fluid_get_option’, ‘excerpt_more_text’ );

    global $post;

    $output = ”;
    $number_of_page = 0; // for number of pages
    $page_list = array(); // list of valid page ids

    //Get number of valid pages
    for( $i = 1; $i <= $quantity; $i++ ){
    if( apply_filters( ‘fabulous_fluid_get_option’, ‘featured_slider_page_’ . $i ) && apply_filters( ‘fabulous_fluid_get_option’, ‘featured_slider_page_’ . $i ) > 0 ){
    $number_of_page++;

    $page_list = array_merge( $page_list, array( apply_filters( ‘fabulous_fluid_get_option’, ‘featured_slider_page_’ . $i ) ) );
    }

    }

    if ( !empty( $page_list ) && $number_of_page > 0 ) {
    $get_featured_posts = new WP_Query( array(
    ‘posts_per_page’ => $quantity,
    ‘post_type’ => ‘page’,
    ‘post__in’ => $page_list,
    ‘orderby’ => ‘post__in’
    ));

    $i=0;

    while ( $get_featured_posts->have_posts() ) {
    $get_featured_posts->the_post();

    $i++;

    $title_attribute = the_title_attribute( array( ‘echo’ => false ) );

    $classes = ‘page page-‘ . $post->ID . ‘ slider-box’;

    if ( $i == 1 ) {
    $classes .= ‘ first’;
    }

    //Default value if there is no featurd image or first image
    $image_url = get_template_directory_uri() . ‘/images/no-featured-image-1680×720.jpg’;
    $image = ‘‘;

    if ( has_post_thumbnail() ) {
    $image = get_the_post_thumbnail( $post->ID, ‘fabulous-fluid-slider’, array( ‘title’ => $title_attribute, ‘alt’ => $title_attribute, ‘class’ => ‘wp-post-image’ ) );

    $image_url = get_the_post_thumbnail_url( $post->ID, ‘fabulous-fluid-slider’ );
    }
    else {
    //Get the first image in page, returns false if there is no image
    $first_image = fabulous_fluid_get_first_image( $post->ID, ‘fabulous-fluid-slider’, array( ‘title’ => $title_attribute, ‘alt’ => $title_attribute ) );

    //Set value of image as first image if there is an image present in the page
    if ( ” != $first_image ) {
    $image = $first_image;

    $image_url = fabulous_fluid_get_first_image( $post->ID, ‘fabulous-fluid-slider’, ”, true );
    }
    }

    $tag = “a”;

    $content = get_the_excerpt();
    $content = preg_replace(“/<\\/?” . $tag . “(.|\\s)*?>/”, null,$content);

    $output .= ‘
    <span class=\’cover\’></span>’ . the_title( ‘<h2>’,'</h2>’, false ) . ‘</div>” title=”‘. $title_attribute . ‘” href=”‘ . esc_url( get_permalink() ) . ‘”>’;

    $output .= $image;

    $output .= ‘
    <div class=”caption”>
    <span class=”vcenter”>
    ‘ . the_title( ‘<span class=”entry-title”>’,'</span>’, false ) . ‘

    <span class=”entry-content”>’ . wp_kses_post( $content ) . ‘</span>

    <span class=”more”>’ . esc_html( $excerpt_more_text ) . ‘</span>
    </span><!– .vcenter –>
    </div><!– .caption –>
    <!– .slider-box –>’;
    } //endwhile

    wp_reset_query();
    }
    return $output;
    }

    // I ALSO ADDED THE EXTRA CSS TO THE CUSTOM CSS BOX UNDER THEME OPTIONS //

    #feature-slider .entry-content span.readmore {
    display: none;
    }

    //AND THE HTML KEEPS APPEARING IN THE FEATURE POST SLIDER.//

    #97656
    Fabio
    Participant

    Also, I would like to know if there is a way to disable the excerpt on the Feature Post Slider but keep it in the Feature Content (and Feature Grid Content) option?

    #97657
    Fabio
    Participant

    I REALLY NEED HELP NOW… I tried editing the functions.php file on the Original Fabulous Fluid Pro theme file and it disappeared. Now I can’t even access Editor tools in WordPress. Terrible day.

    #97658
    Fabio
    Participant

    I can’t even access my WordPress Bench now… even worse.

    #97660
    Fabio
    Participant

    Ok, I got it back by ftp-ing the theme directly into the wp-content folders in my server… wont mess with those .php files again…

    #97765
    Mahesh
    Keymaster

    @latinoliteratures:
    Hi Fabio:

    Sorry for the late reply. Working with child theme or working with code is kinda tricky. A small character can break the whole site and make it inaccessible. I highly recommend you to do the modifications only if you are familiar with programming or else hire a customizer.
    Is the theme working now? You do have option to show content in Featured Content but not in the Featured Slider. You can use Custom CSS for hiding the excerpt in the Featured Slider.

    Let me know further.

    Regards,
    Mahesh

    #97773
    Fabio
    Participant

    What is the custom CSS code to hide the excerpt in Feature Slider?

    Like I mentioned before, I added the code you said that should work, but it didn’t. The html is still showing in the excerpt for Feature Post Slider. It seems to me like this should be an issue that you guys should fix, since it is your theme that is not working correctly.

    #97781
    Mahesh
    Keymaster

    @latinoliteratures: Yes, it is an issue and will be fixed in the next update.
    For hiding excerpt in Feature Slider go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .caption .entry-content, 
    #feature-slider .caption .more {
        display: none;
    }

    Hope this helps.

    Regards,
    Mahesh

    #97784
    Fabio
    Participant

    Thank you, Mahesh, that worked.

    I am looking forward to the updated theme.

    Best,

    Fabio

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Feature Slider Excerpt and Images’ is closed to new replies.