Advertisement:

Author Topic: Watchlist pluggin done !  (Read 32219 times)

aide2001

  • Guest
Re: Watchlist pluggin done !
« Reply #60 on: September 25, 2013, 01:26:15 pm »
watchlist pluggin is great, but it does not work correctly for the lastest osclass. Ive emailed the developer and had no response, which is a shame, because this is great. I might have to sort this out myself (when i get a minute!)

plesk

  • Full Member
  • ***
  • Posts: 188
Re: Watchlist pluggin done !
« Reply #61 on: November 02, 2013, 02:43:57 am »
good evening
I have a bug with this plugin as soon as I get more active to click on my map of France ellle blocks and small bar menu?

could help me resodre the problem
who can help me I'd like to add a favorite icon on it that the code to add css block thank you
<php watchlist ();?>

plesk

  • Full Member
  • ***
  • Posts: 188
Re: Watchlist pluggin done !
« Reply #62 on: November 06, 2013, 09:06:28 pm »
good evening

could you help me please I have a problem bug that install the module happens more go to my map of France and the search bar and small devenur?

thank you :-[

plesk

  • Full Member
  • ***
  • Posts: 188
Re: Watchlist pluggin done !
« Reply #63 on: November 10, 2013, 10:14:31 pm »
good evening

person solution

Aficionado

  • Guest
Re: Watchlist pluggin done !
« Reply #64 on: November 10, 2013, 10:51:37 pm »
Can some admin PLEASE BAN "Plesk" user ?

Enough of this crap.


plesk

  • Full Member
  • ***
  • Posts: 188
Re: Watchlist pluggin done !
« Reply #65 on: November 11, 2013, 12:38:33 am »
good evening
remains polite stp

Aficionado

  • Guest
Re: Watchlist pluggin done !
« Reply #66 on: November 11, 2013, 01:08:26 am »
good evening
remains polite stp

Please stop poluting the forums with the very same questions and with a language that nobody (but you) understands.

Pay someone to solve your huge problems and questions. 170 posts all with same and same questions and problems about ALMOST anything related to Osclass.


gnoe

  • Full Member
  • ***
  • Posts: 237
Re: Watchlist pluggin done !
« Reply #67 on: January 22, 2014, 08:57:02 pm »
Watchlist delete from user dashboard doesn't seem to work when you have permalinks enabled.

If permalinks is off the delete watchlist link is working.

Anybody...How to fix this? ;)

gnoe

  • Full Member
  • ***
  • Posts: 237
Re: Watchlist pluggin done !
« Reply #68 on: January 22, 2014, 10:20:36 pm »
Pagination doesn't work too.

With permalinks on...I receive '404 page not found'.
With permalinks off...I receive 'No ads in list'.

Too pity... :(
It needs some fixes and updates.

gnoe

  • Full Member
  • ***
  • Posts: 237
Re: Watchlist pluggin done !
« Reply #69 on: January 23, 2014, 11:32:49 am »
Solution is here http://forums.osclass.org/general-help/watchlist-and-3-2/

Watchlist delete from user dashboard doesn't seem to work when you have permalinks enabled.

If permalinks is off the delete watchlist link is working.

Anybody...How to fix this? ;)

Has anyone having problems with user dashboard watchlist pagination?
Found any solution?

kirkwj

  • Newbie
  • *
  • Posts: 44
Re: Watchlist pluggin done !
« Reply #70 on: April 03, 2014, 07:21:34 pm »
Hello.
I want to suggest a feature.
If an item of watchlist change, 'cause the owner change the price/description/availability etc. etc., it would be nice if the user who have this item in the watchlist can receive an alert about the event.

Do you think this is possible?

This sounds like a great feature and would add usability to our buyers. Is there anyone who would know if it could be done easily?

ivv

  • Newbie
  • *
  • Posts: 49
Re: Watchlist pluggin done !
« Reply #71 on: May 13, 2014, 11:59:40 am »
I can confirm the Watchlist 1.0.7 works on OSClass 3.2.0

But there is some kind of mistake,

When a user clicked on a "Add to watchlist" link and the item is added, when next time user reload the page with same item, it shows again message "Add to watchlist", but the item is already into the watchlist.

I suggest after the user is reloading the item page, should shows up a message like: "Remove from watchlist" and right next to it another one: "Watchlist"


10x

ivv

  • Newbie
  • *
  • Posts: 49
Re: Watchlist pluggin done !
« Reply #72 on: May 14, 2014, 10:48:07 am »
Well, the page 2 and so on doesn't work

thedaigle

  • Jr. Member
  • **
  • Posts: 81
Re: Watchlist pluggin done !
« Reply #73 on: October 25, 2014, 06:00:53 pm »
Any luck?

andrenalin

  • Newbie
  • *
  • Posts: 48
Re: Watchlist pluggin done !
« Reply #74 on: October 26, 2014, 08:41:32 pm »
jepp, same problem, add to watchlist comes again, and pages not working...


i would like to have the watchlist in dashboard (symnel) for user, now it is the on custom page,
does someone know how i can put it to user-custom?

thx

attached german language 1.0.7 changed watchlist -> Favoriten


to fix the paginaton for the moment i change itemsperpage to "0" now you see all


OK, just for the moment i fixed the the add to watchlist problem for me

change function watchlist (u need to style your button)
the ajax button when adding to watchlist is still working

Code: [Select]
function watchlist() {
      //  echo '<a href="javascript://" class="watchlist seller btn btn-default btn-xs" id="' . osc_item_id() . '">';
//        echo '' . __('Add to watchlist', 'watchlist') . '';
//        echo '</a>';

  if ( osc_is_web_user_logged_in() ) {
            //check if the item is not already in the watchlist
            $conn   = getConnection();
            $detail = $conn->osc_dbFetchResult("SELECT * FROM %st_item_watchlist WHERE fk_i_item_id = %d and fk_i_user_id = %d", DB_TABLE_PREFIX,  osc_item_id() , osc_logged_user_id());

  }
    //If nothing returned then we can process
            if (!isset($detail['fk_i_item_id'])) {
               echo '<a href="javascript://" class="watchlist seller btn btn-default btn-xs" id="' . osc_item_id() . '">';
echo '' . __('Add to watchlist', 'watchlist') . '';
echo '</a>';

            } else {
  echo '<a href="' . osc_base_url(true) . '?page=custom&file=watchlist/watchlist.php" class="watchlist seller btn btn-default btn-xs">' . __('View your watchlist', 'watchlist') . '</a>';
}

    }
« Last Edit: October 26, 2014, 09:04:08 pm by andrenalin »