Hi!
how about wordpress core. do we need update as well to latest version ?
thanks
Yes.. i can see challenges for support team in this matter.. it’s not an easy task especially handling top selling themes where customer would like their site in ‘my site, my way’ requirement
Thanks mate
Hello Catalin,
Thanks for give me code.. however i would like to discuss about your support policy
“If you want to exclude a category from the Related Articles on mobile theme, please notice that is not a simple task and you will have to check the code from front-page.php core ”
Actually after looking the codes… it actually very simple and it can be done under 1 minutes… in front-page.php
i only need change :
// query used on Latest Articles section
$wp_query_args = array(
‘ignore_sticky_posts’ => 1,
‘post_status’ => ‘publish’,
‘posts_per_page’ => $posts_per_page,
‘paged’ => $paged,
);
TO
// query used on Latest Articles section
$wp_query_args = array(
‘ignore_sticky_posts’ => 1,
‘post_status’ => ‘publish’,
‘posts_per_page’ => $posts_per_page,
‘cat’ => ‘-71’, //One Line of modification
‘paged’ => $paged,
);
I thank you for providing me with the code placement, but i’m bit disappointed on how you said “this is not a simple task”… because i don’t ask for adding features or something difficult, but rather ask where the query happen, where you put the code for this and that.. because you guys code this.. and this kind of modification is only took less then 2 minutes.. which for us (user) perhaps taking more time as we must understand on how Newspaper Framework works..
Is something like this is beyond the scope of your support ?
-
This reply was modified 9 years by
admindoxa.
I found out i only need to change
const POST_LIMIT = 3;
to
const POST_LIMIT = 5;
in td_block_big_grid_mob_1.php
hi
not the big grid element, i mean, your template css structure
for example, on single.php we found like this
—
<div class=”td-main-content-wrap”>
<div class=”td-container
<div class=”td-pb-row”>
<div class=”td-pb-span8
<div class=”td-pb-span4 td-main-sidebar”
and many more….
—
if you have complete documentation about this css structure this will be more usefull for us
because as i said before, we want to create new custom page so we will use your css code
thanks
Hello,
that was i’m looking for..
BTW, it would be nice if you put this handy option to the theme panel, because core modification will be wiped out on update.
And i believe for some people this is something that important to know..
Ah.. that’s so cool !
Hello Ing Geek, do you monatize with Adsense ? its javascript based client right ? which supposed to be not related with cache mechanism.. well i could be wrong
The marketleader for wordpress security definitely sucuri.net.. but i use wordfence also without real problem. A new security plugin will release next month called securepress, built by wordpress veteran at wprocket
But if you need more peace of mind go for sucuri, because it protect even before the attacker reach your site
Can you show me the code that handles next/prev link. If it build based on wordpress core next_post_link, there is manual parameter in_same_term that i could turn on.
Reference: https://codex.wordpress.org/Template_Tags/next_post_link
That will make the grid become static, right ? I need to make it display the latest with sticky post option.
If not possible.. can you show me the code that handle big grid 1 for manual customization
Allow me to join the conversation…
This is one of the trade off using commercial wordpress template.. theme developer provide a lot of feature, but perhaps you only use 20-30% of them. Is there any solution ? yes, you will rely on several plugin to optimize your site:
1. Gonzales WordPress plugin, i use it to exclude script and css in a specific pages. Do you realize that if you use COntact Form 7, the script will get loaded on every page of your site.. that’s absurbs
2. Unused-css.com. It will browse your site both in desktop and responsive to find unused css selector.. for my site using visual composer, it reduce 83% of total file… for newspaper it reduce 30%, and newspaper ships with unminified CSS, so you can have extra kb on that
3. Cache Plugin. this is the real booster begin, i’m using WP-Rocket.. it support for page cache, gzip compression, defer javascript support, combine and minify script… really a major requirement when you need to speed up your site.
Is all 3 100% reliable, not really.. first you need to backup and then you need to test your front end, and make sure all of this three improved your site speed to the max.
Last but not least, your server resource also matter.. don’t expect to have good performance with low quality of server (especially shared one).
Good luck
-
This reply was modified 10 years by
admindoxa.
thank you
this has been solved
hi
just for information, the problem has been fixed, i have to enable option “smart sidebar” on the theme panel > template setting page
thank you