Search Results for 'review'

    No search results were found in Documentation!

Results from the Forum
simchris
tagDiv Member

That’s what I do for anything I want “featured” … obviously for anecdotal images, like a book jacket or something in a review, doesn’t need to be the “big cover image” … but yeah, basically upload good quality image, less than 40kb, and then let WP and the theme settings make all the smaller bits. For larger images than that, you still need a plugin (I use ‘thumbnail upscale’ – which basically adds the hook into imagemagick on the server to allow for upscaling which WP should allow but they have asinine mindset “it makes photos look fuzzy…” BAH!!!!!!). Extra exclamation points: (!!!!!!) 😉

TimberG
tagDiv Member

It’s OK. I’ve found it!

TimberG
tagDiv Member

Thank you. I’m new to all this, so could you please tell me where I can find this file?

Lucian
tagDiv Staff

Hi,

You can try to modify this from here: http://screencast.com/t/hKdzDpmf2nm or you could try to use a plugin that dose that.

Thanks

TimberG
Participant
#0

Hi

Is it possible to change the number of stars in a review from the default 5 to another number (ideally 10, to give items a score out of ten in star format)?

Thanks

Gavin

Shashank Shekhar
tagDiv Member

You’re using WP SEO plugin. In titles and meta settings, uncheck the box that says “dates in snippet previews” and you’ll be good to go.

simchris
tagDiv Member

You need to *decide* what fonts you wish to use for the theme.

If all of this is beyond you, then you can simply stick with the standard font usage as most sites do. What we’re talking about here is somewhat advanced; and if it doesn’t make sense, then you should likely skip this and worry about other necessary site optimizations.

If you look at my code from functions.php in 4.4 version of theme, you will also need to comment out the line that calls the Google fonts (using // ):

/*  ----------------------------------------------------------------------------
    CSS - front end
 */

function td_load_css() {

    //google fonts
    if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
        //modify this collection if you want to optimize the fonts loaded
        //collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
        //wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
    }

and I deleted this

        $td_user_fonts_list = array();
        $td_user_fonts_db = td_util::get_option('td_fonts');
        if(!empty($td_user_fonts_db)) {
            foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
                if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
                    $td_user_fonts_list[] = $td_font_setting_val['font_family'];
                }
            }
        }

        if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
            wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
        }

        if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
            wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
            wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
            wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
        }

        if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
            wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
            wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
        }
    }

You would still need to search/replace all instances of Google fonts in your style.css as I stated to replace all font stacks with the Google fonts you wish to use. Or, you’d need to look at the fonts in there to use for grabbing the CSS from Google Fonts to put at bottom of your style.css file.

cstyn
tagDiv Member

How do I know what font I am using ?

I found the code. What to do here, to remove the fonts I don’t use ?

/*  ----------------------------------------------------------------------------
    CSS - front end
 */

function td_load_css() {

    //google fonts
    if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
        //modify this collection if you want to optimize the fonts loaded
        //collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
        wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
    } else {

        $td_user_fonts_list = array();
        $td_user_fonts_db = td_util::get_option('td_fonts');
        if(!empty($td_user_fonts_db)) {
            foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
                if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
                    $td_user_fonts_list[] = $td_font_setting_val['font_family'];
                }
            }
        }

        if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
            wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
        }

        if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
            wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
            wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
            wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
        }

        if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
            wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
        }

        if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
            wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
        }
    }

    //add the google style link for fonts used by user
    $td_fonts_css_files = td_util::get_option('td_fonts_css_files');
    if(!empty($td_fonts_css_files)) {
        wp_enqueue_style('google-fonts-style', td_global::$http_or_https . $td_fonts_css_files);
    }

    //bootstrap - custom built - it was generated via compilation of /external/bootstrap-master/less/bootstrap.less

    wp_enqueue_style('td-bootstrap', get_template_directory_uri() . '/includes/wp_booster/external/bootstrap/td-bootstrap.css', '', TD_THEME_VERSION, 'all' );

    //main theme style - set the TD_DEBUG_USE_LESS flag in /includes/app/td_config.php and the theme will load the less files and compile them for you
    if (TD_DEBUG_USE_LESS) {
        wp_enqueue_style('td-theme', get_template_directory_uri() . '/td_less_style.css.php',  array('td-bootstrap'), TD_THEME_VERSION, 'all' );
        //wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.less', array('td-bootstrap'), TD_THEME_VERSION, 'all' );
    } else {
        wp_enqueue_style('td-theme', get_stylesheet_uri(), array('td-bootstrap'), TD_THEME_VERSION, 'all' );
    }
}
add_action('wp_enqueue_scripts', 'td_load_css');
simchris
Participant
#0

Hi folks
okay… messing with my hobby website magazine, playing with logo etc., but anyway ran into some apparent gremlins in 4.4. Viewing pages in Chrome/Win7-64.

Standard setup; no bizarre plugins, no jetpack, no caching; mod_pagspeed off at the moment; no mega menu.

Issue #1 (personal preference)
on the author, category, archives pages, there are breadcrumbs printing on page under story titles which should not be there and are totally redundant, e.g., here:
http://ga-ga.com/gogaga/movies/

Issue #2:
the category pages, tags, author page don’t appear to pickup the H1 tag settings from theme panel, and also seem to “run into” the breadcrumbs at page top (as above link).

Issue #3:
on post tops with post type “style 2” the top ad banner gets truncated; even adding margin above the full width div for the breadcrumbs.
http://ga-ga.com/1815/book-review-good-title-bad-title-beatles-destroyed-rock/

Issue #4:
How to add a line rule below the top banner ads in general to better separate from the content areas? Could not find a single unique div for the top banner ad, and adding a line rule to the entry-crumbs simply added that to all pages, which didn’t work too well since on the normal categories, the crumbs are not full width and only in left main column. Perhaps even a background color for those pesky ads which Google serves with no borders and just floating on white backing look funky.

Issue #5:
Any way to disable the top banner ad on home page ? Right now on home page when above slider it overlaps the background gradient and with the transparent ads the drop shadow basically runs through the middle of the ad. http://ga-ga.com/

Similarly on the post style with full width photo (style 4), the banner ad doesn’t work with full width image
http://ga-ga.com/1829/book-review-place-hide/

COMMENTS:
Due to the issues with the top ad banner am thinking of just disabling it.

An option to have the ad banner ABOVE the logo would be nice, as I’ve mentioned before. Ideally with option to put a background color on the section, so it doesn’t conflict with the logo on either white or black background layouts. That does not currently appear as an option in the admin panel, unless I’m going blind. 🙂

ONE LAST:
How might I add a background color behind the div for the Google ad box in sidebar, to help “block that in” with the column width? Also useful for when Google serves a narrow tall ad, or a no border on white ad where it looks bizarre in the space.

THANKS!!! Some of that might be nit-picky, but only issues I’m having – otherwise perfect.

mehedi
tagDiv Member

Hi guys 😉

I have submitted the plugin to CodeCanyon. I am not sure how long it is going to take for them to review it but I will keep you updated.

Also, how much shall it cost — I am not sure at all 😉

BTW, I have changed several things and the new version is live here.

What do you think? Suggestions?

Thanks!

simchris
tagDiv Member

Also note Google rolled out Panda 4.1 this past month, and started changing some of the ways they show items in SERPS. You can specify how you wish your snippets to appear in Yoast SEO with preview function, but as is well known Google may change that to their own format regardless of what you do.

First step would be to install YOAST SEO< and check the preview function for SERPS then adjust your custom permalink meta data for titles and descriptions.

This theme supports micro format data, such as proper meta data for post title, breadcrumbs, ratings, etc., which your prior theme might not. This theme is setup the *correct* way to feed snippets to Google for SERPS.

But, the YOAST SEO plugin can help *you* dial that in a bit better on a case by case basis, such as home page, about pages, and posts.

You can always view your page *source* to see WHAT is actually in there.

And, of course, you can always switch back to another theme if none of that makes sense.

simchris
tagDiv Member

Review the docs on mod_pagespeed and your CDN.

The theme creates the thumbnails when *not* using CDN wiht mod_pagespeed; the theme creates thumbnails when using mod_pagespeed, so I’d suspect you have an issue where you’re creating thumbs not locally but perhaps on your CDN and then the theme doesn’t know where they are. Or, your setup isn’t configured as to where to create thumbs, and then mod_pagespeed doesn’t know where they are to optimize them, etc.

Seems like you need to go through the steps of researching

theme assets -> CDN/thumbnails
mod_pagespeed <- CDN/thumbnails

mrpb
tagDiv Member

I am having the same issue from last few days. My page size went up from 1mb to 2.5 mb. This started happening when i got mod_pagespeed enabled on server. Please check http://gtmetrix.com/reports/www.moviereviewpreview.com/hgGcN1aA

sbo
tagDiv Member

Great, the other post you linked worked for the amount of submenus to be added. As for the order of them, is there a way to specify a certain order besides alphabetical? Because as of now, I only want to display about 7 out of the 15 subcategories but its only pulling the top alphabetical ones.

Also, since the amount of subcategories expands vertically, is there a way to add 2 rows of the preview posts aside the category names? http://screencast.com/t/4tn4OZnWQRyn

  • This reply was modified 11 years by sbo.
TheMediumUTM
tagDiv Member

P.S. Not that that isn’t a truly bizarre finding from Google News. As Chris said, this hasn’t come up in other people’s reviews. I just applied for and was accepted to Google News about two weeks ago and haven’t edited that class. “thumbnail” is also WP’s official/backend term for “featured image”, so it’s quite reasonable to expect references to that name…

Michael
Participant
#0

Hey there,

Got a question regarding product reviews.

The current situation is that the listings show stars below the image of the article.
Is it possible to return date on its place and instead of stars show percentage or points number ON THE image (like it is done with video posts – a small PLAY button is overlaying the image)?

Steven
tagDiv Member

I really think the culprit is that plugin Social Networks Auto Poster Facebook Twitter G – 0.1419 sec – 9.24%

the reviews on this plugin is so bad,seem every one complaining about the usage in memory..

Requires too much memory! By WillOfTheWeb, August 25, 2014 for WP 4.0
This plugin requires at least 64megs to run on the server which limits it to specific hosting packages.

It’s a brilliant plugin but it just requires too much resources! 🙁

Lucian
tagDiv Staff

Hi,

The reviews are added to the post (if post has reviews) using the get_date() function like this: http://screencast.com/t/TW9xx8Cv
You could try to modify the function to get the plugins reviews instead or remove the themes reviews and use the plugin instead. If you don’t know how to do it you can hire a freelancer from site like http://studio.envato.com/ to do it for you as we cannot offer custom work as we work hard on the development, updates, fixes and support.

Thanks

maxishere
tagDiv Member

Also, I’ve just noticed since implementing this that it now puts the arrow next to the category name under each post’s headline.

(See: http://www.thisisanfield.com/2014/09/liverpool-fc-week-review-hibbert/ – it appears to the left of ‘Opinion’)

How do I stop that from happening please?!

Josef
tagDiv Member

We have php code for this Rating plugin.
(http://rating-widget.com/support/shortcodes/is-there-any-php-shortcodes-i-can-use-for-my-custom-posts-templates/#platform)

We only need know where is place for add.

Or if not exist option how add on place for Review stars
so we can add between description and read more button – we only need know in which php file is this.

Josef
tagDiv Member

I created one image what simply explains everything:
http://i57.tinypic.com/27wt741.jpg

Josef
tagDiv Member

We using in all category LAYOUT number M9.
And in this layout are review stars on possition for date.
This location is ok, we only want delete stars from Review and add on this location stars from Rating.

Josef
Participant
#0

Hi, please we bought this theme. And we need help with one change.

We create screenshot for better information.
http://i59.tinypic.com/4zuo93.jpg

Now is here stars from Reviews, but we not using Reviews.
We have installed plugin “Rating-Widget: Star Rating System”,
so we want on this place put stars rating from this plugin.

Please write me what we must change in theme for remove Review stars from this location and add stars from Rating.

VERY THANKS FOR YOUR HELP.

kevinp_2012
tagDiv Member

Hi,

In my theme not functions the Twitter and Facebook counters. Before, only Twitter fails, but now fails both.

Where I can submit you the site URL with admin details to review?

Lucian
tagDiv Staff

Hi,

Could also be a plugin which gets over it, please try to disable all plugins and also empty cache or purge files if you use any CDN or cache plugins and check again.
If still doesn’t show up please send an e-mail at contact@tagdiv.com and provide your wp-admin user and pass so we an check this, also send a link to this topic or specify your issues details.

Thanks

Viewing 25 results - 6,551 through 6,575 (of 7,000 total)