vanduzled
Forum Replies Created
-
Forum: Plugins
In reply to: [Search Analytics for WP] How to track searches from the rest api?Hey @cornelraiu-1
That’s fine, a full update makes more sense on the next version. If you could give me a code today I’ll try to test it out and give you some feedback.
Thanks!
Forum: Plugins
In reply to: [Search Analytics for WP] How to track searches from the rest api?@cornelraiu-1 No problem. I will sure write a feedback on the next update.
Thanks!
Forum: Plugins
In reply to: [Search Analytics for WP] How to track searches from the rest api?That will be all I need. Actually right now I only need it for posts so that update will be more than enough.
I’m looking forward for that update. By the way, I really like how fast the plugin tracks my searches. It will really be cool if the REST API searches can also be tracked by your plugin.
Thanks!
I have solved the problem. It’s because the plugin is network activate. Disabling this will make the individual pages’ wp-piwik settings visible.
Forum: Plugins
In reply to: [Polylang] Is there a way to translate Custom Post Type label with Polylang?Thanks for the reply. I had a solution somehow. I have to get the post type name of the current post and then use an IF statement.
<?php $post_type = get_post_type_object($post->post_type); $sname = $post_type->labels->singular_name; ?> <?php if ( $sname == "Event" ) : $pID = get_page_by_title( 'The Events' ); $slink = get_permalink( pll_get_post($pID->ID) ); ?> <a id="ID-<?=$pID->ID;?>" title="Click to see more" href="<?=$slink;?>"><?=get_the_title(pll_get_post($pID->ID));?></a> <?php endif; ?>
That worked right off the bat.
Thanks for the update!
Forum: Localhost Installs
In reply to: 5.0.1 update on localhost throws “fatal error”This happens to me as well. As a matter of fact it also happens on the previous version (5.0) therefore I’ve never really updated to the new version 5 since its launch.
Forum: Fixing WordPress
In reply to: Unwanted Links Suddenly Appeared on my postsThanks for the help Xenos. So far, as we test it, the problem doesn’t occur anymore. So I think it was the plugin all along. And thanks for all the info.
Forum: Fixing WordPress
In reply to: Unwanted Links Suddenly Appeared on my postsThanks Xenos. Didn’t know that a browser extension can hijack the wp posts. Can plugins also do this? I realize I have a plugin extension that’s not in the official WP plugin repository. It’s called qtranslate-xp by Mirko_Primapagina. I don’t see any links of it anymore so I thought that could be a source too.
Forum: Plugins
In reply to: [PDF Embedder] PDF does not generate when called from an AJAX modal windowHey thanks for the reply.
I see what you mean. I am actually the web developer and I’m thinking of a way to re-activate the plugin when you click on the link. Anyway, thank for giving me an idea.
cheers mate.
Forum: Plugins
In reply to: [Zip Attachments] Error: The archive is either unknown format or damagedYes they are attached to the post tried it again on localhost with the default theme but still no luck ??
Forum: Plugins
In reply to: [FV Flowplayer Video Player] Not working in China?EDIT
I was able to track the error on IE9 using a remote server in China. This error appears:
SCRIPT16385: Not implemented fv-flowplayer.min.js, line 6 character 6669
Forum: Plugins
In reply to: [Zip Attachments] Error: The archive is either unknown format or damagedIt show the error when I opened the zip. The zip can be downloaded but it’s only like 1kb. And when I open it, it gives me an error.
I also tried it on my localhost using xampp, but still the same.
Should it also work on localhost? What could be the problem?
thanks.
Forum: Plugins
In reply to: [Redirection] Redirect all .html (MODX) to wp linksI resolved the case by updating the .htaccess. No need for plugin though I may still need it for some of the links.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~mmoserco/test/
RewriteRule (.+)\.html?$ https://www.example.com/$1/ [R=301,L]
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~mmoserco/test/index.php [L]
</IfModule># END WordPress
Forum: Plugins
In reply to: [Simple Lightbox] How to work with manual links?Thanks.
This is what I need.