madebyaris
Forum Replies Created
-
Forum: Plugins
In reply to: [Captcha for WordPress] Changing the style of captcha textHi @forge12 ,
I tested it and I don’t see any change of it,
event when I intentionally to ‘break’ it, but I didn’t see issue with it.
add_filter('f12-cf7-captcha-get-form-field-image', function($captcha, $fieldname, $CaptchaItem, $CaptchaSession, $classes){ // Manipulate the captcha field here. echo "t4est"; $captcha = 'make it error'; return $captcha; });
PS: I use it for Elementor Form, is the filter “should” be the same or not?
Because I can’t find any apply_filter that related with the above.Forum: Plugins
In reply to: [Captcha for WordPress] Changing the style of captcha textThanks for your reply @forge12 that’s awesome ??
Maybe you can add that filter information to the documentation or someplace that other dev can see it too ??Forum: Fixing WordPress
In reply to: admin only in html unless in debug mode@karel0017 Glad you’ve already solve the issue ??
Forum: Fixing WordPress
In reply to: admin only in html unless in debug modeHi @karel0017 , I notice on the wp-admin, these 2 PHP files cannot be accessed by the browser because the web server refuses them:
https://imgur.com/a/Ohzpwz6I notice that you use Apache for your web browser,
you may need to check the .httacess and check if it’s set up correctly, and check if the security from your hosting is still active or not (I recommend deactivating it)I recommend to see this article:
https://kinsta.com/blog/403-forbidden-error/Forum: Fixing WordPress
In reply to: WordPress ErrorHi @crackworldpc , I notice that your host is currently inactive / error
https://www.isitdownrightnow.com/crackworldpc.com.html
I recommend to make it live first, you can check from your host, if there’s any issue or maintain.
And if it’s not from a hosting issue, you can get active the wp_debug and post it here if there’s any error on it, you can follow this article:
https://www.ads-software.com/documentation/article/debugging-in-wordpress/Cheers!
- This reply was modified 2 years, 2 months ago by madebyaris.
Forum: Fixing WordPress
In reply to: All my links on a page open in a new tabCheck if the anchor text
<a>
has this attributetarget="_blank"
, if it’s there, you need to delete it, then it will solve your trouble.- This reply was modified 5 years, 2 months ago by madebyaris.
Forum: Localhost Installs
In reply to: Deleting a site from Database containing several sitesHi @flyer886,
As long it’s not multisite, you can perform that and as long you only delete the specific table.
- This reply was modified 5 years, 2 months ago by madebyaris.
Forum: Fixing WordPress
In reply to: siteurl get’s auto changedTry to install https://www.ads-software.com/plugins/simple-history/ , and revert your setting siteurl (to check if it’s an a human error).
Oh ya, try to check
wp-config.php
then find:
define( 'WP_HOME','https://example.com' );
delete that line if it refer to https://www.viernamcasino.vnForum: Fixing WordPress
In reply to: Astra Starter Side l?d nicht richtig hineinyou can create/move ticket support to their support https://www.ads-software.com/support/plugin/astra-sites/
Sorry I can’t understand German.
Forum: Installing WordPress
In reply to: Virtual host installation on Ubuntu 19.10Hi @starapple ,
from the error “Error establishing a database connection”, it mean you can’t connect to the mysql itself.check the username and password, if it’s all correct check the db_connection, is it already localhost or some other thing.
If it’s all already good, then it probably from the mysql service itself, try to check the port, and check if the mysql service already active.
Forum: Fixing WordPress
In reply to: Multiple Fatal ErrorsHi @efran1526 ,
I suspect there are many loop/process on that side, try to increase the PHP memory limit to 512MB (just in case).
if you can acces & edit wp-config.php, try to active the wp_debug so you can see the exact error (it should be), here how to do:
https://codex.www.ads-software.com/WP_DEBUGForum: Fixing WordPress
In reply to: Can’t edit main theme php files on wp 5.3.2Hi @wassimaburashed ,
Try to follow their advice here : https://stackoverflow.com/questions/52671255/wordpress-editor-not-updating-files-unable-to-communicate-back-with-site-to-chethere’s something that blocked it, maybe some other plugin or the hosting itself (I doubt)
Forum: Fixing WordPress
In reply to: Looking for a calendar plugin that can automatically export eventsHi @laukejas,
you might wanted to use https://theeventscalendar.com/
For share Facebook as event, you can read here:
https://www.ads-software.com/support/topic/auto-post-new-events-to-facebook/As for eventbrite I believe that plugin can handle it.
for question number 3, I think you need a custom code to do this, I can’t find a match plugin for this one.
4) sure you can.
Hope it help you.
Forum: Fixing WordPress
In reply to: How to create special permission for user after donatingHi @rodspri,
I can suggest you to use https://givewp.com/
or https://www.ads-software.com/plugins/yith-donations-for-woocommerce/as for the functionality you mention above, I don’t see any plugin that fit in your need, the possible way is write the code
when user actually paid, then change the user role
Forum: Fixing WordPress
In reply to: Download all external product images onto serverhi @jagman123,
you can follow this tutorial https://www.wpbeginner.com/plugins/how-to-import-external-images-in-wordpress/
It give you what you need.