urbexlies
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Lightbox] How do you insert a video suing a urlThe one you gave me. The first link goes to the mp4 file, the second to the jpg.
Forum: Plugins
In reply to: [WP Video Lightbox] How do you insert a video suing a urlHello
Now it shows me the thumbnail correct and when clicked it seems to want to open a lightbox but the says a window with:
“Image cannot be loaded. Make sure the path is correct and image exist.”
Not sure why it says “image” as it is loading a video, and the path is correct. 100%
Forum: Plugins
In reply to: [WP Video Lightbox] How do you insert a video suing a urlOkay, so I got something working now using this:
a href=”https://myurl/video/V01-Heavy-Metal.mp4″ rel=”wp-videolightbox” title=”” img src=”https://myurl/video/videotemplate.jpg” alt=”Test”></a
But this is not opening a nice lightbox but it goes to a new page fullscreen and opens it in there, i think it is using the default wordpress viewer. (i removed parts of the code so that it doesn’t link here..)
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
- This reply was modified 6 years, 11 months ago by urbexlies.
Forum: Plugins
In reply to: [WP Video Lightbox] How do you insert a video suing a urlread next reply
- This reply was modified 6 years, 11 months ago by urbexlies.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Payment icons weird sizeI am using the Styleshop theme from Elegant Themes. I do believe ET is a big theme name in the business. For now I just totally removed the icons. I do understand you cannot make it work with “everything” out there. Not sure if you could add options to set the size you want for the icons.. or maybe let us choose styles as the old non color ones at least worked fine for me.
Forum: Plugins
In reply to: [Custom Post Type UI] Insert content of taxonomy in phpIt gives me at the top of the page:
array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { } array(0) { }
Twelve times, one for each product that is in the table for that page. (so I guess it does that function in a loop for every product and this goes over that dump line twelve times).
EDIT: if it helps, this is how I added the content of taxonomies to products:
https://ibb.co/f34dxSIn this case “ITALY”. I did this for every product and now I want ITALY or well whatever country is in there to be displayed.
Forum: Plugins
In reply to: [Custom Post Type UI] Insert content of taxonomy in phpWhere in the code do you want me to add this?
var_dump($terms);But I didn’t do anything outside of the scope of your plugin. I used it to add a taxonomy, I called it “country” and then edited all my products (1000+) to have the correct country in that taxonomy. That’s it, I didn’t do anything else.
Forum: Plugins
In reply to: [Custom Post Type UI] Insert content of taxonomy in phpHow would I do this? I mean it is one thing to setup a taxonomy and enter values on all my products but if I cannot then use that taxonomy it, well has no use.
If I understand you correctly, this is not “deep” enough (“country” is the taxonomy name):
$terms = wp_get_post_terms($product->ID, ‘country’);Forum: Plugins
In reply to: [Custom Post Type UI] Insert content of taxonomy in phpThose strong tags are code from here, i was trying to bold parts but it didn’t work. The $name parts works perfect as it should as nothing changed from that plugin.. the country taxonomy gives me this:
As you can see it prints “Array” everywhere instead of the content of the taxonomy.