Jokes1979
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Translating job typesHi @jenhooks,
Thank you for your reply! I was able to change the name of the job types.
Thank you very much.Forum: Plugins
In reply to: [Contact Form 7] Problem with file upload on Chrome (Mobile)Same problem here. Works on iPhone.
Would be great if there’s a workaround.Forum: Plugins
In reply to: [Contact Form 7] File upload button not working on mobileI’m testing on Android 8.0.0 and it doesn’t work.
It works on iPhone though.Any help is appreciated.
Forum: Fixing WordPress
In reply to: WordPress comments – disabling "None found"My blog: https://blog.thecontentfactory.be/fr/
Thank you for your help!
[ Please do not bump, that’s not permitted here. ]
Forum: Fixing WordPress
In reply to: Editing post: server error 500After putting this code:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
in wp-config.php, the problem seems solved.
Forum: Plugins
In reply to: [Tweetily - Tweet Your Posts Automatically!] Not postingAllright. I just updated to version 4.0. Works fine now. Thanks @flavmartins!
Forum: Plugins
In reply to: [Tweetily - Tweet Your Posts Automatically!] Not postingStill doesn’t work here. The plugin stopped tweeting about 22h ago.
Also, when clicking on the “Tweet now!” button, I receive the notification: “Tweet 0 : Oh no! Something went wrong. Please try again.”
I resetted settings and re-authorized, but it doesn’t work.
Let’s hope things get fixed soon.
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] Redirecting homepage aliasHi,
I think I found a solution for my problem.
I added this code to the .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_HOST} ^digitale-media.be$ [OR]
RewriteCond %{HTTP_HOST} ^www.digitale-media.be$
RewriteRule (.*)$ https://www.thecontentfactory.be/$1 [R=301,L]
</IfModule># END WordPress
When you head over to https://www.digitale-media.be you get redirected to https://www.thecontentfactory.be, and you don’t get an error no more when clicking on one of the articles.
Plus: it looks that Google is indexing the new site as it should. Most of the digitale-media.be/*post-url’s are being changed in thecontentfactory.be/*post-url’s.
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] Redirecting homepage aliasThanx for your quick reply, prophecy2040!
I already tried your first suggestion (/index.php to http/www.thecontentfactory.be) but that doesn’t work.
The best solution I have so far is to put this code in the .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^digitale-media.be$ [OR]
RewriteCond %{HTTP_HOST} ^www.digitale-media.be$
RewriteRule (.*)$ https://www.thecontentfactory.be/$1 [R=301,L]
</IfModule>The result is that when you type in https://www.digitale-media.be it gets redirected indeed to https://www.thecontentfactory.be and the homepage comes out as it should. BUT: when you click on a link, you get the error:
Not Found
The requested URL /headlines/goudengids-be-lanceert-gouden-talent-wedstrijd/ was not found on this server.
Apache/2.2.9 (Debian) PHP/5.3.9-1~dotdeb.2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g mod_perl/2.0.4 Perl/v5.10.0 Server at https://www.thecontentfactory.be Port 80
Forum: Fixing WordPress
In reply to: Linking problemOk, thanks for the tip. I’ll give it a try and let you know the outcome.
I’ve also posted my question on the support forum of themeforest.com. They made the Avenue theme.
Forum: Fixing WordPress
In reply to: Linking problemSo it has probably something to do with the plugins?
I have the following plugins active: Google Analytics for WordPress, Facebook Comments, Gravity Forms, MailChimp, Popular Widget, Post-Plugin Library, Random Posts, SEO Auto Links & Related Posts, WordPress.com Popular Posts, WordPress.com Stats, WordPress Importer, WordPress SEO, WP Missed Schedule, WP Most Popular, WP Widget Cache.
Forum: Fixing WordPress
In reply to: Linking problemI’ll try that.
Currently, I have this code:
<div class="post-heading"> <h1><?php the_title(); ?></h1> <small>Een vacature plaatsen tegen een voordelige prijs? <a href=”https://www.digitale-media.be/vacature-plaatsen/”>Meer info.</a></small> <br><span class="heading-author"><?php the_author(); ?></span> <span class="heading-date"><?php the_date(); ?></span> <div class="fb-like" data-send="true" data-layout="button_count" data-width="450" data-show-faces="false" data-action="recommend"></div> </div>