Search Results for 'review'

Results from the Forum
Junaid
Participant
#0

Fatal error: Call to a member function get_map() on a non-object in /home/beansfry/public_html/wp-content/themes/Newsmag/includes/wp_booster/td_global_blocks.php on line 3

Hi
i purchased newsmag to upgrade my site from newspaper to newsmag, after installation i got above error when i live preview my existing website.

I want to upgrade my site asap.

Regards
Junaid
beansfry.com

simchris
tagDiv Member

I have been popping in to check on release of new version with fix for the bug affecting review ratings in Google SERPS/snippets in the NEWSMAG theme (not Newspaper).

So, throwing my two cents in from time to time when I see something in forum I might be able to help with a moment of my time.

Glad to help!

  • This reply was modified 11 years by simchris.
Lucian
tagDiv Staff

Hi,

Sorry for this inconvenience!
I did answer to this in the other topic you’ve made related to this issue you have. I have just checked for this issues on BlackBerry as you’ve mentioned and as you can notice in the screenshot below that the review stars look as they show and not showing any strange chinese characters: http://screencast.com/t/hK9sgsxrRq
Please note that I have made this tests on our demo: http://demo.tagdiv.com/newsmag/ as when I try to access your site a mobile version of it it’s loaded which doesn’t help me to figure this out.
As I also stated in your previous post you’ve made I suggest you try to re-generated the font like this:
1. go to https://icomoon.io/app
2. button “import icons”, import from newsmag.svg (in /images/icons/),
3. select all icons;
4. button “generate font”, button “download”;
5. copy the 4 files (.eot, .svg .ttf .woff), in “fonts” folder in the downloaded zip file, rename icomoon.* to newsmag.*, replace old files.
Please let me know how it goes and also let me know if you disable the mobile version of your site so I can test and inspect this.
I also advise you to try all this without any plugins active and make sure you empty cache.
Hope this helps!

Thanks

simchris
tagDiv Member

Well, yes, YOAST SEO has had some on/off issues, including a security issue. Which is why I normally don’t jump on the “update” until reviewing the changelog, and then waiting for a dot revision. There was one period where they were adding all the Google analytics stuff and that caused issues, and they did five revisions in 2 days (!). But it never hampered publishing.

The issue we *did* have with publishing was the “remove stop words” function, causing some links to not work right. But we could still publish stuff.

Also had issue with trying to hide the /category/ in front of /category/catname/ to have one less path – that didn’t work well as we use a lot of sub-cats for easier navigation (e.g., book reviews, fiction, and poetry might all be under “reads” to separate from movies/tv and music).

Still, some YOAST functions do require you to actually go through each screen and tweak.

ALSO: when updating the plugin, sometimes the settings get wonked, and your sitemap suddenly doesn’t work (!). I had that happen recently.

So…. usually if I update Yoast WordPress SEO, I go through the settings and resave just to make sure the dbase entries are correct/updated for the plugin.

YOU MIGHT TRY THAT… just go through and resave settings, double check social media stuff, resave sitemap stuff (I sometimes change from 1000 per page to 999 per page to “force” refresh that). Stupid stuff like that. Couldn’t hurt 🙂

But generally (sorry to keep using that word so often) … there is no conflict between the basic functions of WordPress SEO and the theme. And none of the problems were theme related, but due to plugin problems, which might be addressed on the support page for the plugin also.

Lucian
tagDiv Staff

Hi,

The reviews are added on posts using the review function placed in the td_module_single.php file which is editable via child theme: http://screencast.com/t/9uweXAh5nvQd
You could try to alter the code for it and implement your own review system there via child theme.
The theme’s review system is build in the td_review file: http://screencast.com/t/NrjhFpwjIB which is not editable via child theme so if you need or want to alter the code here you would have to do it to main theme’s files.
You can find more info about child theme and editable files here: https://forum.tagdiv.com/child-theme-documentation-newsmag/
Hope this helps!

Thanks

VZ
Participant
#0

Hi,

I created a post that can be seen here: http://www.viewpointsandreviews.com/frederic-bistro-review/

For some reason it won’t appear anywhere on the site – even though I have it to appear under category Restaurants and Featured. Also, it won’t show on home page. This is really strange and first time it had happened.

I do NOT have the post marked as private and all other psot are fine.

If I do a searh for it then I can find it.

What has hapepned suddenly to do this? It’s a annoying as this review I wrote was expected to go live today.

Thanks
Vincent

bfrye26
Participant
#0

Hello,

I am moving from another theme. That theme had over 1000 reviews done in a 3rd party review system. I am moving over to the new theme but would like to keep using that review system. It is clean and works for our needs.

The issue I am having is I am trying to implement it so the theme reads the scores along with displays this custom post type of “Reviews” I could just hack the core files, but I wanted to know if it would be possible to implement this using the child theme, as to not hamper updating the theme in the future.

The review system seems to be very simple in the way it outputs data. Here is an example:

// Get the review image
$review_image = get_post_meta( get_the_ID(), ‘blu_review_image’, true );

// Render an image on the page
echo ‘‘;

let me know your thoughts.

Thanks for any help!

fbengo
tagDiv Member

Ok, I have tested it…

Put this:

human_time_diff( $td_article_date_unix, (int) current_time(‘timestamp’))

In the get_date() method inside /includes/wp_booster/td_module.php

My get_date() method inside td_module.php:

Don’t copy/paste the example, because it could change operations, since I’ve customized a lot in my theme!)

function get_date($show_stars_on_review = true) {
        $visibility_class = '';
        if (td_util::get_option('tds_p_show_date') == 'hide') {
            $visibility_class = ' td-visibility-hidden';
        }

        $buffy = '';
        if (td_review::has_review($this->td_review) and $show_stars_on_review === true) {
            //if review show stars
            $buffy .= '<div class="entry-review-stars">';
            $buffy .=  td_review::render_stars($this->td_review);
            $buffy .= '</div>';

        } else {
            if (td_util::get_option('tds_p_show_date') != 'hide') {
                $td_article_date_unix = get_the_time('U', $this->post->ID);
                $buffy .= '<div class="td-post-date">';
                    $buffy .= '<time  itemprop="dateCreated" class="entry-date updated td-module-date' . $visibility_class . '" datetime="' . date(DATE_W3C, $td_article_date_unix) . '" > ' . human_time_diff( $td_article_date_unix, (int) current_time(‘timestamp’)) . '</time>';
                    $buffy .= '<meta itemprop="interactionCount" content="UserComments:' . get_comments_number($this->post->ID) . '"/>';
                $buffy .= '</div>';
            }
        }

        return $buffy;
    }
Carllauren
Participant
#0

Hi

My website is not using reviews. How can I remove the sorting by review option on the categories?

/Erik

simchris
tagDiv Member

Ideally you would use the “suggested” plugin for the theme, “Contact Form 7,” or similar, to set the desired fields and how the information is emailed to you.

The default contact us page is just like the demo:
http://themeforest.net/item/newsmag-news-magazine-newspaper/full_screen_preview/9512331

The demo contact us page uses Contact Form 7: https://wordpress.org/plugins/contact-form-7/

Docs: http://contactform7.com/docs/

MMANouvelles
tagDiv Member

All good for the footer, but each time I post a video I CANT but a sidebar like in your demo (ex: http://themeforest.net/item/newsmag-news-magazine-newspaper/full_screen_preview/9512331) ! I have to choose the no sidebar option if I want a video post (see: http://prntscr.com/5mq5ek) ! My video post look like that http://mmanouvelles.com/2014/12/30/ufc-182-embedded-episode-1-video/ !

Thanks ! BTW ! Best theme I buy so far on ThemeForest ! 🙂

St
Participant
#0

Hi,
I know that we can edit post through clicking the thumbnail. However, sometimes we want to edit the post when we are reviewing the post. How to add edit post or page beside view and number of comment,that is below the title.

Thanks
St

MMANouvelles
Participant
#0

How do I set the video post sidebar like in the demo? (ex: http://themeforest.net/item/newsmag-news-magazine-newspaper/full_screen_preview/9512331)

For whatever reason, there are two default category in my footer, I would like remove them, can you help me!

Thanks

katsdelight
tagDiv Member

Hi,

I have removed the visual composer folder via ftp as you stated but I am still getting this error message when I try to reinstall it.

The plugin does not have a valid header.

Downloading install package from /home/katsdeli/public_html/review/wp-content/themes/Newsmag-child/includes/plugins/js_composer.zip…

Download failed. A valid URL was not provided.

Where can I down load the visual composer folder from, to upload via ftp?

Thank you,

Katrien.

katsdelight
tagDiv Member

If I try to install visual composer via the instructions on this link

https://forum.tagdiv.com/how-to-update-visual-composer-plugin-wpbakery/

I get this error message

Fatal error: Class ‘TGM_Bulk_Installer’ not found in /home/katsdeli/public_html/review/wp-content/themes/Newsmag/includes/wp_booster/external/class-tgm-plugin-activation.php on line 1578

Thanks.

katsdelight
tagDiv Member

Hi,

I have removed the visual composer folder via ftp as you stated but I am still getting this error message when I try to reinstall it.

The plugin does not have a valid header.

Downloading install package from /home/katsdeli/public_html/review/wp-content/themes/Newsmag-child/includes/plugins/js_composer.zip…

Download failed. A valid URL was not provided.

Where can I down load the visual composer folder from, to upload via ftp?

Thank you,

Katrien.

bulent
tagDiv Member

ok.
i use newsmag. web site is http://www.sporpsikolojisi.org. i written some post and selected video form format. pasted my youtube video link in required area. an saved post. But i can’t see the generated preview image on futured image. how can i see generated preview image. to see my problem http://sporpsikolojisi.org/video.jpg

katsdelight
tagDiv Member

Hi,

I am getting this error message when trying to insatll the latest version of visual composer.

Install Required Plugins

Fatal error: Class ‘TGM_Bulk_Installer’ not found in /home/katsdeli/public_html/review/wp-content/themes/Newsmag/includes/wp_booster/external/class-tgm-plugin-activation.php on line 1578

Please let me know what else I can do.

Thank you,

Katrien.

jmpnjunky
tagDiv Member

I have my design the way I want, but what I see as a preview isn’t what is showing up live.

My preview

Current Home Page

Home page control panel

Also.. I cant gets my header ad or my side bar ad to show up.

  • This reply was modified 11 years by jmpnjunky.
Emil G
tagDiv Staff

Hi,

We’ve made some tests and it seems to come from the modules containing reviews used in the sidebar, on the demo there are none, that’s why the issue doesn’t appear there. We’ve added on the list for the next update, sorry for the inconvenience.

Thank you, Emil G.

Emil G
tagDiv Staff

Hi,


@shae101s
– If you don’t set a review it won’t show up, so you don’t need to remove it.

@Arved007
– You can change it from the Theme Panel -> Translations – http://screencast.com/t/aSjCP8Z3sP

Thank you, Emil G.

simchris
tagDiv Member

So (continued)
WP 4.1; Theme 1.31 Unit/Linux/Apache/CentOS

Not using child theme.
No minification.
Only changed name of theme folder and name in CSS file to sitename.
Not using megamenus.
Not using revslider.
Not using jetpack.
Disqus turned off.

HEADER.PHP HACK: (same hack we did with Newspaper where snippets worked right)
One hack to header.php was removing call to pingback since we don’t want that
REMOVED:<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
Removed the “facebook sharing fix for videos” section, not needed for our use.

Yoast WordPress SEO = on
TagDiv speed booster = on

Post settings:
Default = style 2
Featured Images – use = on
Breadcrumbs = all on
Lightbox = off
more articles box = off
ajax count = off
Related article = show by category
Sharing – all off except show top article sharing

Still showing error of not seeing the rating in preview.

TEST:
on the off chance it’s one of my customizations in functions.php
(I turn off Yoast in toolbar, hide ?version numbers and change default compression; post message for those trying to hack login/ping)
I am removing all of those …… NO CHANGE

Argh. So far only thought at this point is checking the actual content that makes up the review text itself, but looking at the Techwalls site with same issue, I don’t see any oddball characters in the summary box that might cause such an issue.

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

(continued)

okay, now with Yoast WordPress SEO “on” as well as “Limit Longin Attempts” plugin turned on (security to block repeat hack attempts by password guessing with bots); we now see the “rdfa-node” populated.

The preview still does not show the rating.

Publisher markup now on via Yoast setting, but “not verified publisher markup” error – even though it is verified.

Bookmark section related to item 1 appears to be error; as that is different story than “this page.”

TEST:
am removing all my custom CSS ….. NO CHANGE

TEST:
turn off post setting ‘show related articles’ …… NO CHANGE
except “bookmark” in first box, now shows link to the first item from sidebar under module “what’s new”

TEST:
remove sidebar second Google adsense box …. NO CHANGE

TEST:
remove all sidebar AdSense Ads (2) ….. NO CHANGE

TEST
switch sidebar ads back on; turn off header AdSense ad …. NO CHANGE

TEST
theme based social sharing at top/bottom of post = OFF ….. NO CHANGE

simchris
tagDiv Member

Okay… we have a problem here, too.

With theme v 1.31 and WordPress 4.1, all plugins off except Visual Composer, and mod_pagspeed off, we’re seeing a problem with an example review page, here:
http://ga-ga.com/1890/book-review-people-deserve-a-fighting-chance/

when tested with the Google rich test tool,
https://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Fga-ga.com%2F1890%2Fbook-review-people-deserve-a-fighting-chance%2F

the preview does not show the rating; although this does show in middle of the lineup
Item 2

type: http://schema.org/rating
property:

worstrating: 1
bestrating: 5
ratingvalue: 4.6

also showing the
Error: Page contains property “maincontentofpage” which is not part of the schema.

Very odd that the first schema hatom-feed also includes a “bookmark” element, which appears to be the first “related posts” item below author bio and social media elements, almost as if something from either the bio box or the summary for review is causing a grouping. There is a copyright symbol in the author bio, and there is a $ in the summary for price of book.

Very odd since conversely this page from the “demo” has no issue
http://demo.tagdiv.com/newsmag/td-post-baby-is-totally-delighted-by-his-first-taste-of-solid-food/

when comparing the two, the section on the hatom-feed is very different, and no “rdfa-node” box.

MOST NOTABLY for our own page, this important section is not fully fleshed out:
Item
type: http://schema.org/review

Very odd.

—————————

Will proceed with activating Yoast WordPress SEO next.

simchris
tagDiv Member

Weird.
You can see in one of my posts, the image fits just right with 640px width
http://ga-ga.com/1815/book-review-good-title-bad-title-beatles-destroyed-rock/

AH

on your page you have inserted a larger image
http://afro.freshmedleydesigns.com/wp-content/uploads/2014/12/AY-NewsMag-size-2-1024×576.png

which is being inserted into the page as 681×383, which is breaking your layout.

You may want to go into the wp settings > media > and set the large or medium size to 640×480 or something like that, even though the theme should be doing that.

Also check the newsmag theme setting for blocks to ensure the 640×0000 size is “enabled” checked “on.”

That should solve it 🙂

Viewing 25 results - 6,426 through 6,450 (of 7,000 total)