Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Bintmusic
tagDiv Member

Hi,

right, for this reason I would like to know the patch between 7.2 and 7.4…

Bintmusic
tagDiv Member

…basically I want to upgrade Newspaper Theme from 7.2 to 7.4 Newspaper without going through 7.3, if it is possible…

…but since I made some custom changes to the files, I need to know what differences there are between 7.2 and 7.4…

thanks

Bintmusic
tagDiv Member

Hi Catalin

sure, I imagine … But something can always escape…

Then on your part you have verified that there is absolutely no problem Seo with version 7.3 or you are working to solve on 7.4?

Thanks

Bintmusic
tagDiv Member

Hi,

did you solve the problems?
It is recommended to upgrade to version 7.3 or not?

It better to wait for 7.4?

Thanks

Bintmusic
tagDiv Member

Hi Bogdan

probably is a wordpress problem, but with the new mobile theme version pagination is also in home and google notices.

to avoid duplication i think must add %%pagenumber%%% in yoast home title and description,
if you doesn’t have a better solution …

thanks

  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

Hi Bogdan,

the problem specified from google webmaster is in my home page

http://www.site.com/
http://www.site.com/page/4/

if i put in url “site.com/page/(any number)” I do not have page 404
in response, but same of site.com

Page has canonical but it could be dangerous for seo?

With your solution https://perishablepress.com/wordpress-infinite-duplicate-content/comment-page-2/
get wrong pagination (404) also on category…

Thanks!

Bintmusic
tagDiv Member

Hi Bogdan

Yes, the error is in home

Strange, because they are several months that I have not active log and the error started when I installed the mobile newspaper version 7.0..

In any case I try to mark it as correct and let you know if it is repeated again

Thanks!

Bintmusic
tagDiv Member

Hi Bogdan, thanks

do you referring to this solution?

(Please add change this code – http://screencast.com/t/i4C94cvIAr with this – http://pastebin.com/tp9t4yRp)

My problem is not on the registration of users does not work.

In google webmaster in scanning errors in the “smartphone” tab it is reported as “soft 401” error the follow url

wp-login.php? action = register

I have not plugin for registration and there are no pages for registration activated

I use the plugin for newspaper in mobile version

Thanks!

  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

Hi Bogdan,

thanks, for all.


@pedropapito
old version are here
https://wordpress.org/plugins/wordpress-seo/developers/

i use 3.1.1 and is ok

Bintmusic
tagDiv Member

Hi Catalin

I find that the mobile theme is great for performance
impossible not to use it, you have done a great job

I saw that remove “featured” on front-page.php at the line

<div class=”td-container”>
<?php echo do_shortcode(‘[td_block_big_grid_mob_1 sort=”featured“]’); ?>
<?php the_content(); ?>

They are able to get into the mobile home a grid with the last three articles…
The problem is that they also are shown below in the “latest articles.”

You should just find a way not to show the first three items below in “last articles”

Thanks!

Bintmusic
tagDiv Member

Hi,

I encountered a similar error already present in 6.7.2
https://forum.tagdiv.com/topic/wrong-url-category-in-related-articles/

I had to look for an older version of Yoast to solve the problem
I am waiting for a solution from the team…

Perhaps the problem is with many subcategories?

Let me know if you can solve in any other way

Thanks!

  • This reply was modified 10 years by Bintmusic.
  • This reply was modified 10 years by Bintmusic.
  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

Hi Adnan

it seems work, even i put a category name and is show 3 last articles
Do you know how not to duplivcate them under in “last articles”

Thanks

Bintmusic
tagDiv Member

Hi Catalin,

thanks now we understand…

however, my site for mobile in home doesn’t show the big grid
and the related articles.. only related articles: is correct?

How can i show tre big grid as in the categories?

Also no longer work related items (by tag, also on desktop)
and category tag on smartphones displayed incorrectly when
category hasn’t subcategories…

Thanks

Bintmusic
tagDiv Member

Hi,

problem of related articles also on desktop and tablet
not shown related articles (in my case by tag), but last articles…

Summarizing with version 7.0 my problems are:

1) do not display pages on mobile
2) related items no longer work (also on the desktop)
3) category tag on smartphones always present on the mobile
4) on the mobile subcategories displayed incorrectly

Bintmusic
tagDiv Member

Hi,

in addition to pages that do not work on the mobile, I also wanted to report wrong-related articles on the mobile: in fact they are the latest articles and not the related articles, in my case by tag.

however, the idea is really good

Thanks

Bintmusic
tagDiv Member

Hi,

the system suggested works…

but if you wanted to change the style of posts of many categories,
or style of post of sub categories like follow

/category1/subcategoryA – /category1/subcategoryB – /category1/subcategoryC
ie change style of subcategoryA – subcategoryB – subcategoryC etc at the same time

how you should do?

Thanks!

Bintmusic
tagDiv Member

Thanks Bogdan,

so work perfectly, though to remove the meta from author id=88
in the function below I had to put the id of the authors (1 and 2) I wanted the meta

         // Do not meta the display on pages
         if (! is_single ()) {
             return ”;
         }

if ($ this-> post> post_author! = 1 and $ this-> post> post_author! = 2) {
             return ”;
         }

Instead with regard to eliminating the dates from the oldest post,
such as published for more than a year, you have any suggestions for me?
What function I could use?

Thanks again

Bintmusic
tagDiv Member

Hi,

even with your suggestion removes the hyphen and the destination also for the other authors …

on the other hand does not take off

<Meta property = “article: modified date”
<Meta property = “og: updated_time”

and even

<Meta itemprop = “datePublished”
<Meta itemprop = “DateModified”

Any suggestion?

Perhaps it may be easier to delete all displayed dates and meta only for older posts, for example those older than one year? In this case, how could I do?

Thanks!

Bintmusic
tagDiv Member

Hi Bogdan,

I try your solution for Remove date e hyphen in post written by a certain author
I modified the one in bold but they do not work, maybe something wrong

for hide date on meta for author 88

// don’t display meta on pages
if (!is_single() and ($post->post_author != ’88’)) {
return ”;
}

and for hide hyphen for author 88

if (td_util::get_option(‘tds_p_show_author_name’) != ‘hide’ and td_util::get_option(‘tds_p_show_date’) != ‘hide’ and ($post->post_author != ’88’) != ‘hide’) {
$buffy .= ‘ – ‘;
}
$buffy .= ‘</div>’;
}
return $buffy;
}

Thanks

Bintmusic
tagDiv Member

Thank Bogdan, now i try..

also I’d also like to know how possibly to show dates are for the most recent articles, such as last year.

Do you have any suggestions?

Thanks

Bintmusic
tagDiv Member

Hi Bogdan,

1) I tried to disable plug in one at a time, eliminating cloudflare and cleaning the cache error remains …
2) I tried to make a new article in a new category – error remains
3) I tried to re-save old category – error remains
3) I tried to re-save custom permalink (/% category% /% postname% /) – error remains
4) I tried to do new article without category – error disappears

Do you have any suggestions to try again?

Thanks

  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

Hi, some solution?

I summarize the problem:

in same posts (not in all) within a post
site.com/post-category/post-title/

related articles have as url
site.com/post-category/related-post-title/

and not
site.com/related-post-category/related-post-title/

so also

next.prev are
site.com/post-category/next.prev-post-title/

and not
site.com/next.prev-category/next.prev-post-title/

same for the url of the widget. exact title url but the same category of post

Thanks!

  • This reply was modified 10 years by Bintmusic.
  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

really it seems that the wrong categories in urls link related there are also before the update … strangely in some article and in others not …

Bintmusic
tagDiv Member

…the defect affects only the articles that I have published since the last Newspaper Theme update, from 6.7.1 to 6.7.2..

also sidebar link takes category of main post…

  • This reply was modified 10 years by Bintmusic.
Bintmusic
tagDiv Member

…also next prev articles has wrong category but right title url…

Viewing 25 posts - 101 through 125 (of 179 total)