RonaldS
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Checkout column Total, too small can not get it widerI have got the solution from avada theme makers:
.checkout .shop_table tfoot th {
width: 85% !important;
}Finally found it. It is in this text area: “For longer help, including screenshots, follow this link. The description below is sufficient for more expert users.
Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section. Select ‘Web Application’ as the application type.
You must add the following as the authorised redirect URI (under “More Options”) when asked: https://www.domain.nl/wp-admin/options-general.php?action=updraftmethod-googledrive-auth N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site. ”
I have done alle Google Drive OAuth settings.
There are 2 Issues I can not understand:
1.) Under ‘Authorized redirect URI’, paste in the URL that was shown to you on your UpdraftPlus settings page back in your WordPress admin console: (do paste it from there – don’t copy any screenshot below)
What URL? There is no URL shown in Settings page.
2) Have no idea what to put into this one: or the ‘Authorized JavaScript origins’, enter the same thing but remove everything after the initial host name in the URL. i.e. something like https://www.example.comIt would be easier that there where some examples or screenshots.
Forum: Fixing WordPress
In reply to: Posts in Admin only display 1 Post instead of allNumber of items per page was set to 1! Problem solved
Forum: Plugins
In reply to: [WordPress Landing Pages] Design are not Responsive or do I overlook this?Plugin deleted. Best solution
Forum: Fixing WordPress
In reply to: Payment link will not generate PHP vars into valuessolved it:
&extra1%5BCID%5D=[insert_php] echo $GLOBALS[‘user_id’] ; [/insert_php]&extra2%5BNaam%5D=[insert_php] echo $GLOBALS[‘user_lastname’] ; [/insert_php]&extra3%5BEmail%5D=[insert_php] echo $GLOBALS[‘user_email’] ; [/insert_php]Forum: Plugins
In reply to: [Zendy Speed: Query Strings] Error:: Undefined variable: stripped_uriplease add: $stripped_uri = ”;
I try to update a couple of plugins manual with WP_Widget replacing with __construct.
That causes only new errors!!
__construct needs __construct() with vars.
See this example:
class ExileBucketList extends WP_Widget {
can not replaced with
class ExileBucketList extends __construct() {Thats for a lot of plugins.
Question to WP-team: How to solve these issues?
My advise: Produce first a solution that fits for almost every recent coded plugin before define a code as deprecated.
Forum: Themes and Templates
In reply to: AVADA Child-Theme How To edit 404 pageThat was very usefull. Thanks. Good the solution now.
Forum: Themes and Templates
In reply to: AVADA Child-Theme How To edit 404 pageHi wdtune, seems a good solution. Will test it.
But 1 issue is still open: how to redirect default 404 page from avada theme to child-theme.
That is for me the best solution. I want to use the 404 from avada.Forum: Plugins
In reply to: [Strong Testimonials] Dutch translation does not workJust send via email (got your address from earlier child-theme problem)
Forum: Plugins
In reply to: [Strong Testimonials] Dutch translation does not workHi Chris, I have done the renames. Also delete all cache again.
Still only English is shown.Forum: Fixing WordPress
In reply to: Avada Theme recognize wp-config problems but there ar noafter delete wp and install again new version + table options reinstall all seems ok now.
Forum: Fixing WordPress
In reply to: Avada Theme recognize wp-config problems but there ar noThere are no error messages.
I use these:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_DISPLAY’, true);
define(‘SCRIPT_DEBUG’, true);
define(‘SAVEQUERIES’, true);
@ini_set(‘log_errors’,’On’);
@ini_set(‘display_errors’,’On’);
@ini_set( ‘error_reporting’, E_ALL ^ E_NOTICE );
@ini_set(‘error_log’, dirname(__FILE__) . ‘/wp-content/debug.log’);Developers of Avada are at this moment on vacation ??
Forum: Installing WordPress
In reply to: rewrite htaccess homepage location, how to do?Thanks. RedirectMatch 301 ^/$ /home is ok.