Nik
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: get_post_gallery_images()you can use shomething like this:
<?php $gallery = $product->get_gallery_image_ids(); ?> <div> <?php foreach ( $gallery as $imgSource ) { echo wp_get_attachment_image( $imgSource ); } ?> </div>for more info and see accepted parameters:
wp_get_attachment_imageForum: Fixing WordPress
In reply to: Need Website Changed from HTTPS back to HTTPhi, you can change the URL from PHPMyAdmin. just go to your database then options table and change “siteurl” and “home”. after that go to .htaccess and remove these lines of code if exists. something’s like this:
RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]if you have a force SSL plugin, you need to disable or remove that too.
Forum: Plugins
In reply to: [WooCommerce] how can i use local and online payment at the same time@luminus thanks a lot.
I’m a developer but and I mentioned that I built a custom shipping method but it doesn’t work properly. now, I don’t know what to build? because the Woocommerce doesn’t have anything else. can you help me with that?Forum: Plugins
In reply to: [WooCommerce] how can i use local and online payment at the same timethank you @amandasjackson for your reply.
but it doesn’t have what I need. my scenario is exactly like local delivery that the user must pay products price + shipping price locally. but we need the user pay’s shipping price online with payment gateways and products price locally.