junior
Forum Replies Created
-
I cant reimport, because new web was already up and has allot of new data before i figured error :S
Can i dump new database and reimport that, or that wont have effect?Hey Tara, no i didnt use any guide. I did allot of migrations before, so i went like always in same domain name case.
1. zip public_html
2. dump database
3. on new server unzip in root
4. create new database and user, add privileges import dump
5. adjust wp-config.php if needed.Forum: Plugins
In reply to: [YITH WooCommerce Social Login] Facebook login unable to workHi, anyone found solution to this problem?
Happens to me for FB, and Twitter, those two im using. WP_DEBUG has no errors on that blank page.
ThanksForum: Plugins
In reply to: [Attachments] CPT registered, but cant query attachmentsOh i managed to get it to work.
$attachments->register( ‘my_attachments’, $args );
Here was the issue whoever needs it, so because of this object creation should be
$attachments = new Attachments( ‘my_attachments’ );Forum: Plugins
In reply to: [Attachments] CPT registered, but cant query attachmentsoh,
$args = array( 'post_type' => array( 'post', 'page', 'dokumenti' ), );
is
$args = array( 'post_type' => array( 'post', 'page', 'docs' ), );
i was renaming variables for sake of post here, so its in english. So i messed up that here in post, so issue is not there.
Forum: Plugins
In reply to: [WooCommerce] complex stuff in webshopAha, ill try to type it, and then i wont bother you anymore.
So i have categories of DOG BREEDS, like big dogs, small dogs, etc, then i have subcategories of those, like big dogs (sheperd), etc, and then small puppies as ending product.
Then i have lets say actual products like articles, so eating bowls, cases etc and each of those has product on end.
Then, since i wanted puppies to have different shop layout, and ending single product layout, i made adittional category called DOGS, and one called ITEMS, and then in my functions.php for main shop i just show from ITEMS category. And on other place i show DOGS.
And i use those product_cat to display different single product page for pippies and for items. So when i add new puppy i select category DOGS, and lets say shepered. And when i add new bowl i select ITEMS and bowl for categories.
In that case, does DOGS and ITEMS need to be parrent categorie or not?
Thanks allot, after this i wont bother you
Forum: Plugins
In reply to: [WooCommerce] complex stuff in webshopThanks, and does then CAT1 has to be parrent of those categories, or its not needed? Since i actually dont need it in URL, i just need it as MARK so i can target coding in php, since its easier to target 1 category, then 5 of them separate.
Forum: Plugins
In reply to: [WooCommerce] complex stuff in webshopThanks, is it good approach to differ products by categories? I mean if i have CAT1 that has one design and CAT2 that has other design (shop page and/or single product page), and then make actual categories, lets say,
CAT1 is used to STYLE categories CAR, BIKE, BLA, and CAT2 is used to style PLATES, CHAIRS.
So when i add product i select CAT1 and BIKE for categories. Or is that bad?Forum: Plugins
In reply to: [Product Brands For WooCommerce] Plugin not showing imageSorry i think i made mistake, since other plugin messed up my image upload. Btw is there option to only echo Brand name instead of image? Thanks
Forum: Plugins
In reply to: [Easy Google Maps] Entire category on one mapAhh thank you, verry good ?? Most likely i will go with pro version also!
Only one question here, so i dont open new thread. Is there default map zoom lvl option? Because there are min and max zoom lvl, but default zoom is not availible? Thanks againForum: Plugins
In reply to: [WooCommerce] Wierd css problem with price underlineHey, thanks for answering. As i said i cant since its on locahlhost. I cant be border since it has width of price text, and price is block, so border would be wider. But beside that also, no border rules on any of elements. Im so confused
Hello, sorry i didnt catch your reply somehow.
The thing is i have multiple galleries on same page, so its gallery-id-1 id-2 etc… And Lightbox Bank opens them all together. Is there any way to make it when you click image from gallery 1, that it opens and “slideshows” only trough images from that particular gallery?
Because now if i have 3 images in one gallery, and 10 in another one, it opens 13 images to show. I want only those 3 from that gallery to be viewed.
I hope its understandable now. Before for other lightbox plugins i could add class to gallery shortcode and it would work.Thanks
Forum: Plugins
In reply to: [WordPress Lightbox Plugin by Lightbox Bank] W3C errorHello, link to the website here .
I scanned just index page and it gives error there. Thanks
Forum: Plugins
In reply to: [WooCommerce] Let customers create PRODUCT that consists of other productsNo one :S ?
Forum: Plugins
In reply to: [WooCommerce] Multiple categories separated on same pageHello j.dossis. I tryed to put this on index page and it works. but you have to change => ‘shoes’ in 3d line of code (seen below)
$args = array( 'post_type' => 'product', 'posts_per_page' => 1, 'product_cat' => 'shoes', 'orderby' => 'rand' );
and instead of shoes inside of single quotes put any of your category names. if you pasted this code somewhere, and it doesnt show anything, its because you dont have category named “shoes”.. I for example have lets say cookies. so i put that in that line of code…
I only installed clean woo plugin and thats it..no themes..
See if that helps ??