Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all 169539 articles
Browse latest View live

delete a logical option


Stripe needs to load stripe.js on every page not only on checkout page

$
0
0

Replies: 0

Quote from stripe.com website:

“Include the Stripe.js script on each page of your site—it should always be loaded directly from https://js.stripe.com, rather than included in a bundle or hosted yourself.

To best leverage Stripe’s advanced fraud functionality, include this script on every page, not just the checkout page. This allows Stripe to detect anomalous behavior that may be indicative of fraud as customers browse your website.”

Also stripe says loading the stripe.js script on every page is a requirement when you want to use their Checkout anti fraud protection.

In the current situation I see the script is only loaded on the checkout page.
Please can you have the YITH Stripe plugin add it also to every other page?

Best Media Management PlugIn and fastest support

$
0
0

Replies: 0

Best plugin or wp media library and support faster than light!

Nasty practices

$
0
0

Replies: 0

You have silently pulled built-in support for Woocommerce and offer it as a paid-by-website plugin now.

The information about no Woocommerce support was never mentioned to me during an update, instead it is marketed inside the Yoast SEO dashboard as a super cool new feature (you can pay for).

We have learned the hard way, when one of our sites suddenly lost all meta descriptions on products and this new state got indexed by Google.

For this nasty and obviously intentional practice to silently pull something that works, just so you can sell it separately without being public about it, I don’t like you. In the future I will seek to evade all your products since there are no guarantees that you won’t pull the “Standard SEO” from the free plugin and make it a paid add-on as well.

Short Codes for Thank You Page

$
0
0

Replies: 0

Hi,

Do you have a list of short codes that will work on my custom thank you page with Custom Thank You for WooCommerce? I tried using [ctyw_order_review], but nothing is being displayed on my page.

Thanks,

Calling option

$
0
0

Replies: 0

Delivery drivers are getting option to call customers but they are not getting option to call different different vendors

Website Hacked | How to Restore

$
0
0

Replies: 0

Hi Everyone,

I need your support !!!

#Hacked My website is getting hacked. Due to some reason, I’m not able to update my WordPress site and it gets hacked.
Now I’m not able to access the WordPress admin pane even those not able to access my Cpanel.

Even the situation is going on in the world my hosting provider is not available at now this time.

Can someone help me to #restore my website !!

Elegant Design and well coded (y)

$
0
0

Replies: 0

COVID-19 card looking very elegant in the website sidebar


How to translate with wpml

$
0
0

Replies: 0

We translate to spanish with wpml and with loco translate, but it don’t work.

We donwload the “PO file” to inject the words in spanish like this:

#: inc/woo-giftcards-class.php:82
msgid “Resend Email”
msgstr “Reenviar email”
“Reenviar email\n”

Now ¿where is the directory by ftp, to update the file?

Works great

codepen html js css in wordpress – Easy

$
0
0

Replies: 0

Hello

I am trying to buld a site for my business using wp and I am having some problems. I saw some interesting fullscreen menus and changing the arrow screen cursor to a dot. I tried to integrate the codepen codes, but I am having problems.

I have read the enqueue tutorial here on wordpress
https://developer.wordpress.org/themes/basics/including-css-javascript/

but I am still having problems because it does not work. I am not from the IT or programing industry, so my knowledge is very basic. I googled it but nothing works. I am sure that due to the lack of my programing knowldge, basics, I am doing something wrong.

My process was:
a) I created a child theme in Wp, still on my localhost, using wamp
b) I found a code on codepen with html, css and js code. I downloaded those files.
c) I copied the html code and inserted it in my Child theme header.php file
d) On my pc, in C/wamp64/www/wordpress/wp-content/theme/my-theme-child/ I created two files, one is caled js and the other is css;
e) From the codepen downloaded file, where I had two maps dist and src, I copied from the dist map two files, one js called script and the other css called style;
f) I pasted the js file to my-theme-child/js and the css file to the my-theme-child/css
g) Than I went to my Child theme functions.php and I added this code:

function add_theme_scripts() {
wp_enqueue_style( ‘style’, get_stylesheet_uri() );

wp_enqueue_style( ‘style’, get_template_directory_uri() . ‘/css/style.css’, array(), ‘1.1’, ‘all’);

wp_enqueue_script( ‘script’, get_template_directory_uri() . ‘/js/script.js’, array ( ‘jquery’ ), 1.1, true);

if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
wp_enqueue_script( ‘comment-reply’ );
}
}
add_action( ‘wp_enqueue_scripts’, ‘add_theme_scripts’ );

Now when I preview my page in my browser on top of the page the menu is not as it should be (there is only Home, about, contact text on the left side with white background, no hamburger button…).

I know I have done something wrong, but I can not figure out what.

I woud be very happy for any kind of help at resolving this problem.

Thank you & Best regards,
BR

Migrating from Contentful

$
0
0

Replies: 0

Hi Everyone,

We currently have a website that uses Contentful as a content system for posts.

I am now building a WordPress site for us, and I’d like to migrate all the post contents from the Contentful system to WordPress.
(title, content, images, dates)

Any idea how to do that?

Best,

Show More Than 10 Products

$
0
0

Replies: 0

Hi – Thanks for developing this very useful plugin.

Please could you advise on how I could show more than 10 products on a page.

Thanks

Super booking system, great support

$
0
0

Replies: 0

The new upgrades are great. I had a couple of questions and the response was quick and detailed. Great work team, thanks.
Tymon

Disable edit name

$
0
0

Replies: 0

Hi, how can I disable edit name and nickname in the profile?
Thanks


CF7_data and Woocomerce Order ID

$
0
0

Replies: 0

Hi there,

What is the shortcode to get Woocomerce Order ID from CF7?

Thank you for the great Plugin

$
0
0

Replies: 0

I absolutely love this Plugin. Excellent product.

Add options to theme-customizer in child-theme

$
0
0

Replies: 0

Hey fellow developers,

Currently I’m swapping themes. The current one is no longer maintained. The new theme I’m using comes with a nice customizer. I’m not happy with all the settings in the style.css so I made a child-theme. No real sweat. I also want to alter the single.php. No problem but.. I want to use the theme-customizer to change the single.php. So the big question: Is it possible to add new customization items to the child theme and how?

The main theme has an option to show or hide the featured image on the post. I just need to add “feature only on first page” – otherwise the image shows up on every page of a multipage post. Dont want that. I can do that in the code my checked if its the first page but want to make it userfriendly.

Any documentation about how the extend the customizer from with a child-theme ?

Regards
Sjoerd

customize “coming soon”

$
0
0

Replies: 0

Is there a way to change the “Next post coming soon…” text?

Great

Viewing all 169539 articles
Browse latest View live