SiKth
Forum Replies Created
-
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] It. does. not. work!I can see that my issue is closed I have not even recieved a reponse. Great.
Can you please see to the issue that my site does not even work with your plugin activated. And without your plugin the site does not load the images that are stored on your server.
And please stop saying over and over again that the issue is fixed with 2.0.3 when thats the version that made this issue. Before that version it all worked.
Yes I know. That is the version that screwed the whole site up. I am still not able to access my images. I am not waiting for 2.0.3, I am waiting for 2.0.4 that will get my images back.
- This reply was modified 4 years, 7 months ago by SiKth.
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] It. does. not. work!Thank you!
I have send you all the info – #113587.Regards,
FredrikNo news? I have a webpage with out images and need to get them back ASAP.
Appreciate any help.
Forum: Plugins
In reply to: [Gravity Forms Payment Continue] Wrong currencyHere is a solution. Finally.
In the file gravity-forms-payment-continue.php go to line 315 and find this function:
public function replace_merge_tags( $text, $form, $entry ) { // Check that merge tag exists if ( strpos( $text, $this->merge_tag ) === false ) { return $text; } // Get the payment URL $url = $this->get_payment_url($form, $entry); // Replace the merge tag $text = str_replace( $this->merge_tag, $url, $text ); return $text; }
The $url outputs a link in the mail, if you put this link in a html it gets right.
Change line 323:
$url = $this->get_payment_url($form, $entry);
To this:
$url = '<a href="' . $this->get_payment_url($form, $entry) . '">Link to PayPal</a>';
This also look better ??
Hope this helps someone!
- This reply was modified 6 years, 6 months ago by SiKth.
Forum: Plugins
In reply to: [Gravity Forms Payment Continue] Wrong currencyHere is more information:
Here is a generated link:
https:/ /www.paypal.com/cgi-bin/webscr/?notify_url=https%3A%2F%2Fnldk.se%2F%3Fpage%3Dgf_paypal_ipn&charset=UTF-8¤cy_code=SEK&business=kontakt%40nl……..Note the currency looks wrong, and when I change this to:
https:/ /www.paypal.com/cgi-bin/webscr/?notify_url=https%3A%2F%2Fnldk.se%2F%3Fpage%3Dgf_paypal_ipn&charset=UTF-8¤cy_code=SEK&business=kontakt%40nl……..
It works great! Hope this helps you to fix it, probably other have this issue. Let me know if I can assist more!
Forum: Plugins
In reply to: [Slider and Carousel Plus Widget for Social Media] Clear cacheAllright, that did answer my question! ??
Thank you!
- This reply was modified 6 years, 10 months ago by SiKth.
Forum: Plugins
In reply to: [Slider and Carousel Plus Widget for Social Media] Clear cacheOkey. That doesn’t answer my question at all.
Everytime I add a new post to Instagram, do I have to click “Clear Cache” in the settings for the new post to show in my site?Regards
Forum: Plugins
In reply to: Hide admin toolbar from customers (WooCommerce)THANK YOU!! @johanlimm
Forum: Plugins
In reply to: [Contact Form DB] Use of show=”*” in shortcodesI got it to work, but I don’t know how really. I used a variable in “trans=” but when i removed it from the shortcode and everything displayed fine.
Thanks anyway! ??
Forum: Plugins
In reply to: [Contact Form DB] CPDB is not using “Admin field label” with Gravity FormsThis is absolutely amazing! You added this function in a couple of hours! ??
Best support I have ever seen. Thank you!
Forum: Plugins
In reply to: [Simple Events Calendar] Problem with the German mutated vowels "??ü"I have posted an answer to this in the support forum.
Forum: Plugins
In reply to: [BadgeOS] BadgeOS section in back-end profile page gone!The “BadgeOS Email Notification” field was displayed at the bbpress profile page by default, just wanted to hide it.
Forum: Plugins
In reply to: [BadgeOS] BadgeOS section in back-end profile page gone!Yes I want to hide everything from BadgeOS in the front-end profile page. As admin I can see everything and the members can only see the email settings as default, I want to hide this from them as well. Thats right.
Forum: Plugins
In reply to: [BadgeOS] BadgeOS section in back-end profile page gone!Resolved.
I removed this section in the front-end profile page:
BadgeOS Email Notifications Email Preference Enable BadgeOS Email Notifications
by adding
remove_action( 'show_user_profile', 'badgeos_user_profile_data' );
to my function.php, and it removed all BadgeOS from my back-end profile page.
I must have done this very fast without thinking further!
New solution:
In user.php move
if ( current_user_can( badgeos_get_manager_capability() ) ) {
from line 132 to 118 to include this section to be hidden from non-admin.