Svetoslav Marinov
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] same page/post slugs for different langs?Thanks!
oh. found ctl_locale filter. nevermind
Forum: Everything else WordPress
In reply to: Excerpt with clickable linksHi @alltiagocom are you looking for something like this?
https://wpsandbox.net/wordpress/how-to-make-wordpress-post-excerpt-links-clickable-p1221
Forum: Installing WordPress
In reply to: Installing word press@mathan54 after you make php.ini changes you need to restart the Apache service (from Windows Services) in order for the required module to be loaded.
I think you can access the services program by WINDOWS key + R (run) services.msc
.. or restart your computer.
then try opening php info page again
@farid451 your hosting provider may be blocking outgoing connections
another option is in the ignored() function to have a filter after your checks to allow other devs to skip the caching
Forum: Everything else WordPress
In reply to: You should remove inactive plugins?yeah, if you are definitely going to be using WPML there’s no point of keeping it deactivated. It’s better to check with the WPML support why you’re getting errors otherwise you’re just delaying stuff.
Forum: Everything else WordPress
In reply to: wp cli permissions@richardkentgates the wp info output is not available anymore. Normally you need permissions 0755 and install the .phar file as /usr/local/bin/wp.
then you need to switch to a given OS account e.g.
su your_site_user
then you can safely run commands such wp plugin listForum: Fixing WordPress
In reply to: Find specific plugin@igorlaszlo This sounds like a custom project for sure. Have you posted the project in WordPress Jobs yet?
https://jobs.wordpress.net/Forum: Fixing WordPress
In reply to: All Blog Posts are Blocked from appearing in search enginesI would remove the disallow section from your robots file. Maybe the SEO plugin adds this.
https://logodesigner.co.za/robots.txtForum: Developing with WordPress
In reply to: WordPress Posting SlowdownWhat if you execute wp-cli to create the commands.
I had to do a WP user migration and tried several things. I ended up creating a script that directly loads wp-load.php and runs some WordPress functions. That was super fast!Forum: Fixing WordPress
In reply to: wp-cli remote over https – failsHave you tried the official WordPress image?
>> https://hub.docker.com/_/wordpressNot sure if that image contains WP-CLI. If it’s not there you may need create your own image and add the wp-cli to the image and then start a container.
I think it’s a good idea to take a look a few Docker courses.
I personally have a Virtual Machine that has Ubuntu installed and there I have docker installedForum: Fixing WordPress
In reply to: HTTP_ORIGIN is not set with wp_remote_post()Wasn’t that only necessary for JavaScript / Ajax calls?
Did you check this link to see how to add another header to the request?https://stackoverflow.com/questions/50951072/set-the-content-type-with-wp-remote-post
Forum: Everything else WordPress
In reply to: NoindexHi, the no index could also be emitted by the server.
Can you test this via developer tools (F12)?
Reload the page and check the response headers.Forum: Everything else WordPress
In reply to: Image Gallery that Users can Upload toHi,
I am sure there’s a form plugin that probably integrates with the gallery plugin you’re using. Have you contacted the plugin’s author if it’s possible?
they may have an addon for it.
There are a few things to consider when you allow people to upload stuff on your site.
– would the picture be large => probably => so it needs to be automatically resized and optimized.
– spam users will upload garbage => you can tackle this either by manually approving images or have a flag button and delete a specific image when somebody reports it.
– probably more stuff to consider.Slavi