kniool
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP] Contact form 7 re-captchaForum: Plugins
In reply to: [AMP] Rebuil amp-custom.cssYes i confirm.
Then how can i flush all of this ? i deleted the cache, delete AMP plugin but i can’t delete this amp-custom.css
Where can i find it ?
Thanks and sorry for the mistakes…
Forum: Plugins
In reply to: [Super Progressive Web Apps] Change popup Add to home screenHi thanks for you response.
I had problem with your pluggin so i desactivate it.
But i have error, even if i delete your pluggin.
In my console, i have this :
SuperPWA: Current request is excluded from cache.
Could you help me please?
Forum: Plugins
In reply to: [Nextend Social Login and Register] verify settings not workingHi Laszlo,
First I’m really sorry but i resolved my problem before your response.
In fact, i read all the steps in this page (which is really well explained) :
https://nextendweb.com/nextend-social-login-docs/common-issues-with-tml/So thanks a lot for your response, and sorry again to be a noob.
Sincerely
Forum: Fixing WordPress
In reply to: SEO php pagesThank you,
I already use it…
In fact i want to know, if i change the description with yoast does affect the SEO even if the description doesn’t appear in the page?
(Due to my php file)Forum: Fixing WordPress
In reply to: Google links doesn’t updatesWow,
I didn’t know this “fetch as google”…
And it works very well!!!Thanks a lot Steve.
Forum: Fixing WordPress
In reply to: Post method change urlI try something new :
I’d try to call my template-test1.php which is composed like that :require_once ‘vendor/autoload.php’;
// create object to manage MangoPay API
$api = new MangoPay\MangoPayApi();
// use test client credentails (REPLACE IT BY YOUR CLIENT ONES!)
$api->Config->ClientId = ‘xxxxxxxxxxxx’;
$api->Config->ClientPassword = ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’;
$api->Config->TemporaryFolder = ‘xxxxxxxxxxxxx’;$naturalUser = new MangoPay\UserNatural();
….
$naturalUserResult = $api->Users->Create($naturalUser);Then when i use the post method with this :
$redirect = ‘https://www.looink.com/wp-content/themes/classiads-child/template-test1.php’;
<form method=”post” action=”<?php echo $redirect; ?>”>
It works fine.But when i use the post method with this :
$redirect = ‘https://www.looink.com/test1’;
<form method=”post” action=”<?php echo $redirect; ?>”>
It don’t work : error 500.I think the problem is due to the require_once, due to the path.
Isn’t it?Forum: Fixing WordPress
In reply to: Post method change urlThank you for your response !
But :
As you said, i create a new template and associated it with a page.
2 cases :
I call the new php file which i had associate to a new test1 page :
$redirect = ‘https://www.looink.com/wp-content/themes/classiads-child/template-test1.php’;
It call the php file, it works well but the URL is the same that the $redirect.I call directly the new test1 page :
$redirect = ‘https://www.looink.com/test1’;
I have the good URL but the page is not good.I didn’t said a thing before is that in may template-test1 file, i use this code :
require ‘MangopayCardreg.php’;
StartPayment();I call a function to create a new user on a payment solution API.
When i call the php file it works, but when call the page it don’t works.
I don’t know if i was clear…If you know where is the problem…
Thank you.
Forum: Fixing WordPress
In reply to: Avatar updateOk i’ll do that thank you!
Forum: Fixing WordPress
In reply to: buddypress profile pictureThank you Tara for your advice.
I’ll do that!Forum: Fixing WordPress
In reply to: Paypal adaptive paymentOk i’ll know it.
Thank you for your response !
Forum: Fixing WordPress
In reply to: Paypal adaptive paymentThe payment processor was on the theme.
With this i can made a paypal payment and i already use it.So i think i just need to change some options 🙂
Forum: Fixing WordPress
In reply to: Paypal adaptive paymentThen, i don’t use an ecommerce plugin because i don’t sell anything.
It’s a service website.So i think i find a solution to my question.
I’ll make two payments:First payment: A pay me, i give him a password.
A meet B, the meeting is ok, then A give password to B, B valid the payment with a button.
Second payment: I pay B.I’ll try to implement this…
Thank you for your response.
Kniool
Forum: Fixing WordPress
In reply to: Chained payment without woocommerceThank you wptweaks!
I would like to make a custom job.
My Template have already an express payment function (NVP code) in a PaypalAP.php file.
Could you tell me if I just had to add parameters to this function?
Or I must create another file with a special chained payment function?Thank you in advance.
Kniool
Forum: Fixing WordPress
In reply to: How-to : link plugin and templateThank you esmi i’ll do that!
I thought a common steps would exist for buddypress and all templates…