kashann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error:Remote connection errorRstar- We don’t do too much with orders, but we are indeed having issues with bulk selecting, and Smart Manager also seems to be causing some javascript errors as well. Also the new search function is killing us. It seems to be a wild card search that also now goes through the descriptions as well. So if we are searching for a product called “Macbook Pro”, it will now return any other product that mentions the string “pro” or “Macbook” in the title, sku, or description.
For the record, I opened up a ticket, and just got the update.php file from Smart Apps support.
The warning is gone, which is good, but all of the previously mentioned issues remain.
Forum: Fixing WordPress
In reply to: Error:Remote connection errorAh, thanks so much for the info rstar! I will open a ticket and see if we can’t get our hands on the upgrade file.
Cheers
Forum: Fixing WordPress
In reply to: Error:Remote connection errorHello rstar, thanks so much for posting- I just got a call from a client freaking out about the red warning message!
Have you managed to remove the warning by any chance? I tried the Smart Manager update, but it gives me a second red warning box.
Forum: Plugins
In reply to: [Flickr Gallery] [Plugin: Flickr Gallery] Pagination fails :(Yikes!! Indeed I did! Thanks for catching that.
Do you have a url to the site you are working on? Maybe I can take a look and help you troubleshoot ??
Is the first page loading correctly?
Also, are the other tabs (Photosets, Collections, Interesting) working correctly?
Thanks again for catching that!
So moving the map below the content and ticket info is easy. Just use the method Azizur mentioned above.
Putting the map in between the text and ticket box is going to be difficult, as the ticket box is added to the end of the_content() with a hook.
I’ve been wrestling with this for a few days, because I’d like to add a bit more content above the Eventbrite Ticket box on every event. Kind of frustrating. I’m working on a fix, and will post it if I’m successful.
Forum: Plugins
In reply to: [Flickr Gallery] [Plugin: Flickr Gallery] Pagination fails :(Hmmm, let me try this again:
change
$.post("<?php echo get_bloginfo('wpurl') ?>", {
to this:
$.post("<?php echo $_SERVER['REQUEST_URI']?>, {
Sorry added an extra backtick last time.
Forum: Plugins
In reply to: [Flickr Gallery] [Plugin: Flickr Gallery] Pagination fails :(Hello. I was having the same problem that you were, but I think I have it solved. I changed line 300 in the “fickr-gallery.php” file from
$.post("<?php echo get_bloginfo('wpurl') ?>", {
to
$.post(“<?php echo $_SERVER[‘REQUEST_URI’] ?>”, {`
And it seemed to work like a charm.
Hmmmm interesting indeed- if you find a solution please post it if you have the time. I will also take a look and see if there is a good solution.