Unfortunately, I have to tell you that I faced the same problem again after two days without facing any error.
The plugins I have installed are:
24liveblog (has been installed a week after the problem started)
Version 1.1 | By 24liveblog
All In One SEO Pack (was facing still the problem with Yoast before)
Version 2.1.4 | By Michael Torbert
Disqus Comment System
Version 2.74 | By Disqus
greeklish-permalinks
Version 1.0 | By Panagiotis Kontogiannis
jQuery Colorbox
Version 4.6 | By Arne Franken
NextScripts: Social Networks Auto-Poster
Version 3.3.3 | By Next Scripts
Social Sharing Toolkit
Version 2.2 | By linksalpha
Sugar Events Calendar Lite for WordPress (is deactivated)
Version 1.0.3 | By Pippin Williamson
tagDiv Social Counter
Social counter for wordpress
Version 1.3 | By tagDiv
WP Super Cache
Version 1.4 | By Donncha O Caoimh
WP User Avatar
Version 1.9.1 | By Bangbay Siboliban
I have the same problem…. clean 3.8.2
What’s the solution?
i want to create a menĂĽ like this, how can i do? 
i couldn’t see this menĂĽ at the install demo version
*I’ve installed Disqus onto the theme and it works great except the comment count. (Sorry auto correct on the phone).
Is there anyway to change the code in the Theme Settings, or would i need to do it via FTP? If so, what file would i be looking for to change? (.php? line no.?)
Thanks
Hi I tried that and although I get page numbers, it changes the pages layout which I don’t want….
I posted this in another thread an hour ago “For a specific page only the 5 most recent posts appear, however I need users to be able to browse all post at their leisure i.e. use page numbers at the bottom. I was told in another thread to use the “home page with article list” template, which did add the page numbers but at the same time changed the layout (which I don’t want!).
I have tried installing the WP-PageNavi plugin to resolve this issue instead, but nothing seems to happen???
Please can someone help me resolve this, as it basically makes my site useless for users.”
Hello,
I’ve installed Disqus onto the theme and it works great expect the comment count.
I found this page showing you how to add it: http://help.disqus.com/customer/portal/articles/565624-tightening-your-disqus-integration , do you know what the theme’s shortname for comments? Or is there an easier way to update it, so it shows how many comments on posts?
Thanks 🙂
For a specific page only the 5 most recent posts appear, however I need users to be able to browse all post at their leisure i.e. use page numbers at the bottom. I was told in another thread to use the “home page with article list” template, which did add the page numbers but at the same time changed the layout (which I don’t want!).
I have tried installing the WP-PageNavi plugin to resolve this issue instead, but nothing seems to happen???
Please can someone help me resolve this, as it basically makes my site useless for users.
Hi, it didn’t work?
Could I use this instead? – http://wordpress.org/plugins/wp-pagenavi/installation/ if so how do I install it?
Hi,
Does the workaround to fix the post views when using a cache plugin work with the 7 days post sort in the sidebar? I know this fix will show correct views on the top of a post page, but will it also fix the 7 days post sort order in the blocks?
And are you guys planning on integrating the ajax view count in the theme? I don’t like to install so many different plugins to fix the bugs that come with this theme… I mentioned this problem months ago and you guys said that you would fix in in one of the future updates. We’re at least 4 updates further, but the only solution you provide is using another couple of plugins to make it work, instead of fixing it wihtin in theme.
Also, I use block 2 in the sidebar to highlight some post (just like the theme’s live preview) and want to manually select the posts i want to display there. It it possible to filter the post according to post id? I was highlighting the most viewed posts with the 7 days post count but since that doesnt work i now show the most recent posts there…
Hi,
You have other plugins installed? Can you try with all deactivated.
Thanks!
Hi,
The theme have the default counter and also support that plugin WP-PostViews that works with cache plugin.
If you have installed that plugin the theme will read the count from that plugin.
If you edit a post you will have 2 custom fields that keep the views(1 is the default one and another one is from that plugin WP-PostViews)
http://screencast.com/t/NFWjdEqkKM
You can easily check you counter, go to a post, make refresh and see if the counter work, should update on each refresh.
Hello I want to install a hellobar from hellobar.com and the javascript seems to conflict with the theme. Is there any way we can get this to work. The installation process says to add the javascript before the closing body tags but it still doesn’t show. Please help. Thanks
Be careful installing demo data, as that is typically for folks starting with blank (new) site, not changing an existing site.
FYI – from the demo source code:
PT+Sans:400,700,400italic
Ubuntu:400,400italic
Open+Sans:400italic,400
Oswald:400,700
Roboto+Condensed:400italic,700italic,400,700
Hi Azerty,
I haven’t used this setting but use a custom font from fontdeck. If you install the demo data I guess it might help you get to grips with how the theme fits together.
Good luck!
Interesting. It looks to do some of the things many security nuts do.
Fact is, some hackers will troll a website even if WordPress is not installed. One of our sites gets probes everyday to /site/wp-admin/ even though no such directory exists, nor does wordpress (custom CMS on our main business site).
Some things you can do yourself with edits to your wp-config file if you research that, which I think is preferable. And perhaps some other things are being done via a custom rewrite in the htaccess file (basically 302 redirects, perhaps).
I think if you have a lot of worry about being hacked, it’s actually simpler to use common security practices:
1) don’t have an admin account for wordpress; create superuser, delete “admin” …
2) install Limit Login Attempts plugin
3) read up on several fixes for your config file such as turning off the “lost password” function, pingback support, etc.
4) simple fixes to function.php to turn off showing version numbers
Also be aware that your web hosting company should be running things like iptables/csf/ldf to limit port scans and IP attacks, DDOS, email port attack (53), etc.
YOu may find some of these useful for adding to your functions.php, perhaps not:
/*NEOTROPE CUSTOM MODS - */
remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
add_filter( 'pre_comment_content', 'wp_specialchars' );
function no_errors_please(){
return 'GET OFF MY LAWN !! RIGHT NOW !!';
}
add_filter( 'login_errors', 'no_errors_please' );
/* Disable YOAST SEO Admin Bar. */
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wpseo-menu');
}
// and we hook our function via
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
function delete_enclosure(){
return '';
}
add_filter( 'get_enclosed', 'delete_enclosure' );
add_filter( 'rss_enclosure', 'delete_enclosure' );
add_filter( 'atom_enclosure', 'delete_enclosure' );
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'jpeg_quality', create_function( '', 'return 50;' ) );
function remove_pingback_url( $output, $show ) {
if ( $show == 'pingback_url' ) $output = '';
return $output;
}
add_filter( 'bloginfo_url', 'remove_pingback_url', 10, 2 );
I would not try using that commercial plugin on a production site, but might be worth testing on a test project and see what it actually does. 🙂
-
This reply was modified 12 years by
simchris.
Hi Azerty,
The demo uses Ubuntu for the menu, Oswald for the main home page slider titles, Roboto condensed for other titles (eg don’t miss and story titles) and PTsans for the body text.
If you use chrome browser you can install an extension like WhatFont which is a really easy way to identify fonts used.
Cheers,
Martin
Thank you, problem is solved for now.. 🙂
Actually, I had Yoast been installed before when I had this problem and the 403 ERROR stopped as I disabled Yoast and Jetpack and installed then “All in one SEO”.
FYI, when you download the theme files, there is clearly a file called “update_log.txt” … you can download the update zip file without having to install it on your website.
Good idea to spend some time familiarizing yourself with the files you’re downloading, as to what is in each folder and the supporting documents. Just a thought, no insult intended.
[ V 3.6 ]
– added new font system
– added support for custom font files
– added support for typekit.com fonts
– added Most Commented sort order option for widgets
– added support for font stacks
– better support for google fonts (it optimizes font delivery)
– fixed the breadcrumbs for the bbpress forum (no more 404 file missing error)
– fixed mega menu font issue
– slides work now with only one post
[ V 3.5 ]
– added 4 predefined style: SPORT, CAFE, FASHION, TECH – screenshot
– added option to uppercase the font for the Header Menu – screenshot
– added Alphabetical A -> Z sorting option
– added option to change the typography of the default Blockquote in Theme panel – screenshot
– added COLOR option for default Blockquote – screenshot
– added old sharing back – screenshot
– fixed Ad overlapping on Header Style 4
– fixed translation for Home breadcrumb
– fixed issue with video thumb downloader (sometimes it did not download the thumb)
– better megamenu handling on touch devices
– added comments on pages ( with option in theme panel – default it’s disabled )
– post views counter alternative for W3 Total Cache (with WP-PostViewer and Ajax_the_view plugins) – https://forum.tagdiv.com/wp-postviews-post-view-counter-alternative-for-w3-total-cache/
This is something that is really annoying when you update Newsletter. Please can you make sure you update your change log on Theme Forest BEFORE you submit the update. I like to see the changes before I install. Thanks.
Hello
was just exporting settings from one of my two sites to the other; noticed that it exports the LOGO settings, which installs logo from one pub to another.
Request: add filter option on Export
[ ] do not include logo data
Thanks folks! 🙂
Hi,
You need to have the slug forums on the forums page. https://forum.tagdiv.com/how-to-install-bbpress-forum/
Hi,
Try with SEO by Yoast plugin insted of All in one SEO. Install it and see if you post will have correct title
You can test the links manually by posting in facebook, iI’ve tested some post link from you site and give me that 404 error to, but after 4-5 attempts worked
Thank you very much Marius!
I didn’t know there was an update to the plugin. I installed it and now it works great!
Thank you for your help 🙂
Hi,
All option are available in Visual composer to: http://screencast.com/t/mDL4hzaw
Radu show you a screenshot with Visual composer to: http://screencast.com/t/TQyKZpzDHiw8
Please check if you have the latest plugin version. Install it again from plugin folder http://screencast.com/t/cCFj8dbaKZJ
Thanks!
Hi,
Please make sure you have the latest plugin version installed, Install it again from plugin folder.
I see that Radu tested your ID and works.