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 :)
neakriti
tagDiv Member

I found the error (at least for my case)…

I am working on replacing an existing website to a new one. So the new website is visible only via a “hosts” redirect on my windows/system32/drivers/etc directory.

When the DNS points to the actual server, the fonts load correctly.

  • This reply was modified 7 years by neakriti.
neakriti
tagDiv Member

Same here

neakriti
tagDiv Member

Hi,

yes, I understand that.

What I asked if it would be easy in a future update to include GitHub in your social network items at a future update as it is something widely used by people, especially when it comes to portfolios, and in that case, many would be interested to add a GitHub account into their social profiles.

Also it appears like very simple update to be included in a future release of newspaper.

Thank you

neakriti
tagDiv Member

thank you for your feedback… Seems I missed that.

Maybe a suggestion on my side would be that on the “TD Editor” at the lower left corner add an “FAQ link” so people would be informed about this and maybe other things that might affect their work.

Such a fast reference would be awesome (if not already there and haven’t seen it)…

ofcourse such a thing is not necessary, but for some TL;DR people like me – would be good 😀

  • This reply was modified 7 years by neakriti.
neakriti
tagDiv Member

SOLVED – CLOUDFLARE ISSUE

It seems this was all due to Cloudflare.

More specifically if you go at the “Speed” section and Disable the “Rocket Loader” option, then the problem gets resolved.

Please note that this option is enabled by default when a site goes through Cloudflare, so its important to either take steps to prevent the theme from malfunctioning with default Cloudflare settings or inform your users that they need to be aware of that setting in Cloudflare.

  • This reply was modified 7 years by neakriti.
  • This reply was modified 7 years by neakriti.
  • This reply was modified 7 years by neakriti.
  • This reply was modified 7 years by neakriti.
neakriti
tagDiv Member

Jetpack, which is in your supported plugins list, contains “infinite scroll”, functioinality.
However this functionality requires a theme that can support the jetpack’s infinite scroll feature.

Do you plan to make the moderations needed, so one can use the JETPACK’s infinite scroll feature on that template – or can provide some code alteration so it meets Jetpack’s requirements for this functionality? I think such a nice template should at least comply with jetpack on that, since the template doesn’t provide this functionality out of the box.

Its a 3rd party “VERY USEFULL” functionality – especially on a news driven template.

http://jetpack.me/support/infinite-scroll/

I think it has to be some alteration on the template to support it. Its nothing to build from scratch since its provided by Jetpack, but I think the template should be ready to use this functionality if a user wants to.

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

I noticed that the block21 uses the module_16.
This calls the code
<?php echo $this->get_image('thumbnail');?>

while for block 16 that uses module_mx7 and module_6 use
<?php echo $this->get_image('td_218x150');?>
and
<?php echo $this->get_image('td_100x70');?>
respectively….

It seems that the “get_image(‘thumbnail’)” for posts without featured image causes the problem.

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

> Also, you have access to the next our update without any problem.

However this update comes from the envato website, which means that if they decide to stop support, we cannot get the updated version. Either download will disappear or will point to the previous product.

I will contact envato, and thank you for your time.

neakriti
tagDiv Member

I have an example of the above problem to demonstrate

Here as you see “Γεγονότα” is a hidden category, and you can see it doesn’t show on the category tags.
However its fully visible as a breadcrumb.

neakriti
tagDiv Member

So in this update, we simply replace the social counter plugin with the new one? We don’t copy any file if we already got v6.6?

neakriti
tagDiv Member

Thank you for your reply. I am in no need for yet another plugin. Since I managed to alter code myself, I can live with that until some future update encorporate this functionality.

However I would like if possible to know what php files can be overriden through the child theme and which cannot.

For example the Newspaper->includes->wp_booster->td_block.php does not affect anything if placed inside the child theme, unfortunatelly it has to be changed inside the main theme only.

So what folders/files can we change in child theme without fear of overwites on the main theme?

Thank you

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

I managed to make a fix, but I don’t know if it is recommended

at Newspaper->includes->wp_booster->td_block.php
at line 74

I managed to fix this by replacing this code

$td_categories = get_categories(array(
	'include' => $td_ajax_filter_ids,
	'exclude' => '1',
	'number' => 100, //limit the number of categories shown in the drop down
));
foreach ($td_categories as $td_category) {
	$td_pull_down_items []= array (
		'name' => $td_category->name,
		'id' => $td_category->cat_ID,
	);
}

with this

$token = strtok($td_ajax_filter_ids, ", ");
while ($token !== false){
	$td_categories = get_categories(array(
		'include' => $token,
		'exclude' => '1',
		'number' => 100, //limit the number of categories shown in the drop down
	));
	foreach ($td_categories as $td_category) {
		$td_pull_down_items []= array (
			'name' => $td_category->name,
			'id' => $td_category->cat_ID,
		);
	}
	$token = strtok(", ");
}

As I see there are certain sorting options for sorting categories based on wordpress get_categories function…

The only approach I managed to follow was tokenize each entry in the list and then, produce isolated result for each entry, thus produce result sorted by the order in which the IDs were typed.

I would like to know if there is some better approach to this, without changing too much of the original template.

Yet it would also be more than welcome to get an official fix for that from the template itself, so we don’t have to update that code whenever new template version is up.

Thank you

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

For example if I put

15, 23, 8, 19, 32, 20

I want to display them with that order… that is the order in which the category IDs are typed. Is that possible?

neakriti
tagDiv Member

Its not speedbooster related (I’m stupid to even mention that), but it still seems like it ignores this section completely. Even if I comment out the entire section where that code is to be inserted, it works normally.

Has this functionality moved to some other location in your theme?

neakriti
tagDiv Member

Hello,

in the past this worked. However now (maybe because of some update the files got rewritten), I tried to put again the values as shown in (http://screencast.com/t/HHQV9KFc2) for excluding categories from posts, but they don’t seem to have any effect.

As I see this is in the speed-booster location. I have enabled speedbooster and it seems to be working in the system status (Speed Booster i v4.1 – Active)

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

Other than updating all the files as described from 6.3 to 6.3.3, is there a list of changed files only from 6.3.2 to 6.3.3?

Thanks

neakriti
tagDiv Member

FIXED IT….

For some reason a file or two might have been changed…. I simply delete the wp_booster folder and instead of patching it, I copied a full version of it from the zip that contains the full template.

Then it worked… I’m gonna research for file differences, spot where this strange error was, and if related to tagdiv (thus not my nooby mistake), I’ll post here the results…

neakriti
tagDiv Member

its wp_booster not speedbooster, speedbooster is plugin with version 4.1, wp_booster is version 3.1 and is included in the theme core files.

For now, I put the patch excluding the wp_booster patch files, leaving it to prior version 3.0. Please tagdiv or anyone help with this!

neakriti
tagDiv Member

Hi, I need to mention an additional file.

1) includes\td_config.php
2) includes\wp_booster\td_wp_booster_functions.php

When these two files are with the old “6.3” version, the backend shows, if I put the updated version for any of these TWO files, I get the blank screen.

All other updated and new files (of the 6.3.2 patch) don’t affect the backend from showing up.

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

P.S. Its not plugin related.
I tried to change the folder name of every plugin from “mypluginname” to “mypluginname-disabled”.
However the system continued to show blank screen at the backend as long as the version 6.3.2 of td_config.php file was on my server.

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

Hi, for the new Newspaper6 version of the theme
I tried to apply the equivalent update on tagdiv_theme.js and tagdiv_theme.min.js

However it doesn’t work. Any help about making megamenu elements usable on tablets please on Newspaper 6?

neakriti
tagDiv Member

I build a greek news website, with about 120 posts per day.

My website is
http://w3.neakriti.gr/

Its under development now…

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

Ok, I found solution.

There is a plugin called “Force Regenerate Thumbnails”.

It does exactly the same job as “Regenerate Thumbnails”, but it also removes those thumbs not used by the current version of the theme, thus saving “junk” file space on thubs that would never be shown anyway.

neakriti
tagDiv Member

Amazing jansena, clear and pro!

neakriti
tagDiv Member

Yes… widgets get accent color value unless you bypass this with css

  • This reply was modified 11 years by neakriti.
Viewing 25 posts - 1 through 25 (of 66 total)