Theme adds no ‘harmful’ code; but obviously if you did, that would be the cause.
You can do “view source” on your post/pages to see if that content still there anyplace; clear any caching you’re using; clear transients with wp-optimize wouldn’t hurt either.
I think you can also scan your site from your Google Search Console (webmaster tools) to see what examples/pages they’re talking about, if memory serves (not sure on that).
You can change the language by adding explicit language to your wp-config.php file.
See the WP codex/docs for help with that 🙂
Try toggling visibility from the WordPress tab top right of post screen to toggle elements on/off.
Theme docs also worth a read:
https://forum.tagdiv.com/featured-image-or-video/
Which custom code are you asking about ?
Who blacklisted you, and what was the reason given ?
What kind of ads used ?
We’ve been running the TagDiv themes for 4 years now with AdSense, and with zero issues.
( I don’t work here. )
Wordpress docs always helpful, too
https://codex.wordpress.org/Customizing_Feeds
I did find this function, which you might try at bottom of your main functions.php file
function custom_blogname_rss($val, $show) {
if( 'name' == $show )
$out = 'Custom Blog Name';
else
$out = $val;
return $out;
}
add_filter('bloginfo_rss','custom_blogname_rss', 10, 2);
YOu can also google this topic
“how to change title of wordpress RSS feed”
-
This reply was modified 9 years by
simchris.
Well, two things
a) you could buy plugin and use with theme, if not using a feature conflicting with latest version of theme
b) just because a new plugin version is “available” does not mean it’s for security purposes, or that it will even work right
You need to learn to
1) view ‘changelog’ for new plugin to see WHAT actually changed; and if it’s even relevant to your use case
2) check plugin support forum to see if known issue or security flaw actually introduced with new version that was not there before (this HAS happened!)
Don’t presume that a “new version” must be installed “right now” — as it may not be necessary or even safe to do so. Similarly automatic updates are generally not good for WP as things break and best to keep track of what changes actually get made and how they interact with other things (e.g., full dot versions of YOAST SEO traditionally have bugs and best to wait for second dot revision, as one example).
Just food for thought.
Make sure you set post ‘type’ to video AND put the video into featured video box, AND choose a template supporting featured video.
Might be a plugin to pull the title and place into text.
Obviously you could place the text manually when you create post.
Or you could likely have a developer make a function for you to echo the post meta title after nth paragraph.
Not part of theme, but a good developer could help you with that, probably not too expensive.
Did you update Visual Composer also ? You do need the NEW version included with the current theme and not the old one you were using. See the plugin in the ‘all files download’ in /plugins/ folder.
We use adrotate plugin here.
This is common to all themes and wordpress and not theme specific.
You can speed up some of these things… see theme docs under tutorials on suggestions to speed up wordpress theme assets. The speedboster plugin can help with somevof this, but this process is not one click solution, and also not technically a theme specific issue.
For example, theme does not manage loading of akismet, essb subscribe, etc.
I dont work here. Just some feedback.
You can download latest version from your ThemeForest account, but you can also see the changelog at bottom of the Newsmag “info” page on ThemeForest.
e.g.,
\\
Version 3.2 – October 10th, 2016
new: added support for design options on most of the blocks. You can now change the padding, margin and border on blocks
new: added support for retina images on our blocks and modules. You can enable them in the panel.
misc: various core code refactoring and optimizations.
misc: better theme documentation and better help text in panel
misc: added used on for thumbnails in theme panel
misc: file path and names are now visible on each module, smart list, template etc on hover
misc: breadcrumbs markup, added BreadcrumbList schema
fix: our blocks sometimes had issues autoadjuting the column count when placed in a inner row that is in a row
fix: on first install the Visual Composer tooltip was appearing over our tooltip and there was no way to close the last remaining open tooltip
fix: wrong recomanded columns in Visual Composer, new users found it dificult to find out on what colum layouts our blocks work best
fix: background ad on tempalte 8
fix: top menu hover and background ad cursor fix bugs
fix: images that have alignnone now work as expected
fix: main menu was loading without css on first load
fix: modal login button css
The list of modified files
Basic WordPress setting …
go to WP > settings > reading
change the number of posts to display from 10 to 20. 🙂
(or 30 … etc.)
@Colourofsunshine
probably want to post your own topic as unrelated to this one.
Specify exactly WHAT issue you have, what errors you’re getting from your hosting error log file, or WP debug code turned on, what you expect to happen, what actually happens, etc.
That way TagDiv can try to assist with your particular case.
One presumes you have tried turning off all other plugins to see if conflict with “bad” plugin, turn off any items which modify how pages load like cache, minification, and if using a CDN know how to set WP up properly.
(( I don’t work here. ))
You should manually minify your CSS and not do it via the cache plugin; and don’t minify js with plugin, that also needs to be done manually. My long optimization thread in the docs > diy tutorials > best of forums has some examples on that. I also recommend NOT using child theme for best results overall on speed.
Amit did great job of making this much more “to the point” — great job @AMIT !
example link ?
See sticky post top of the forum:
https://forum.tagdiv.com/topic/how-to-update-visual-composer/
As with most custom mods; yes, you need to make them to each version of theme if you upgrade theme.
Just keep list of the files ‘modded’ and then reapply the changes to new version when you do next update, prior to FTP install.
Not terribly painful; but this is the downside to “modifying” code in core files.
Well, make backup and then try deleting old visual composer plugin, and install the current version from the all files download and see if it works for you.
Note that “stopped working” means you can’t edit anything or make new items with VC.
If that is not what you meant, perhaps reword that?
note if you’re asking about ‘activation’ — you don’t need to ‘activate’ the plugin with Bakery folks to use it, as version included with theme is ‘bundled version.’
Try installing latest version from theme download in /plugins/ folder; try clearing cache, resave permalinks, and delete transients with wp-optimize plugin.
Good luck!
@nano2408
Hi, no idea; I don’t use any mobile theme plugins; preferring to rely on optimized responsive design and AMP support, etc.
Complex question, you may wish to post a new topic as this isn’t really related to my optimization thread, specifically. 🙂
(( I don’t work here. ))
Typically in WordPress you add more items to sidebar from the appearance > widgets.
Sorry if that not helpful.
Right, just saying Google doesn’t like two book reviews of the same book on the same site typically, or two reviews of the same peanut butter by the same person.
If the new story is new, generally you wouldn’t copy over the ‘views’ as that new story didn’t get all those views the original story did.
Of course, you may have some unique use case to do that. In any case, just keep eye on your search console for warning about duplicate content, or perhaps use a plugin to scan the text to minimize that to not get deprecate in SERPS.
Not sure why it would be covered in the docs; the hits are plainly seen in the custom fields, where most “custom data per post” is stored, traditionally in WP themes like this. Most content creators on a “news” site (hence “newspaper” theme) don’t need to copy views from one story to new story, as they should “in most cases” be two completely different things.
Not critical, just being helpful, having run information/news portals online for 20 years now 🙂
-
This reply was modified 9 years by
simchris.
Probably need to add notice about this on the plugins activation page in theme panel in future as a quick tip or something.
Nicely expanded on my prior post/threads on the topic — well done 🙂