• I have a few questions :
    1. I want a custom image size such as 100 x 100.
    2. I want to change the title align to be aligned right
    3. I want to change the popular tab title
    4. show posts from specific category
    If you can, please add these features in future, they are very important. I very like the design of your plugin, but it is very limited in options.
    Can anyone help me ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello @davil2008,

    Thank you for contacting MyThemeShop.

    1. Please add below code in your theme’s functions.php file, or you can use Code Snippets plugin to add the code.

    add_action( 'init', 'personal_wp_review_thumb_size', 11 );
    
    function personal_wp_review_thumb_size() {
    	add_image_size( 'wp_review_small', 100, 100, true ); // Small Thumb.
    	add_image_size( 'wp_review_large', 300, 200, true ); // Large Thumb.
    }

    2. Do you mean the tab title? If so, please add below code in the WP Dashboard >> Appearance >> Customizer >> Additional CSS:

    .widget .wpt_widget_content .tab_title a {
        text-align: right;
        padding-right: 10px;
    }

    3 & 4. Unfortunately, these features are available in the pro version only.

    If anything else, please let us know.

    Thank you.

    Thread Starter Daniel

    (@davil2008)

    Hello,and thank you for your response.
    about the image size, unfortunately, the code didn’t work.
    about the title align – thanks !! works perfectly.
    also I have a few other questions,
    1. can I also change the tab title text ?
    2. is it possible to disable the next and previous buttons ?
    I really appreciate it that you are helping me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘image sizes, text align and more.’ is closed to new replies.