i'm using 4 different themes, but they're all based on prosilver (i like the css code)...wingnut144 wrote:What styles is everyone using with this MOD??
if you want to turn it on in all your forums, just run this code on your databases:
Code: Select all
UPDATE phpbb_forums SET enable_thanks = "1" WHERE enable_thanks = "0";
Manhattan wrote:Hi guys
Is it possible that the page is not refreshed after clicking the thanks button?(Ajax)
Best regards
how could that happen? it has to refresh because it adds the thank list under the post. if it didn't refresh, that would never happenManhattan wrote:Manhattan wrote:Hi guys
Is it possible that the page is not refreshed after clicking the thanks button?(Ajax)
Best regards
Code: Select all
Error
SQL query:
CREATE TABLE `phpbb_thanks` (
`thanks_id` MEDIUMINT( 8 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`thanks_from` MEDIUMINT( 8 ) UNSIGNED NOT NULL ,
`thanks_to` MEDIUMINT( 8 ) UNSIGNED NOT NULL ,
`post_id` MEDIUMINT( 8 ) UNSIGNED NOT NULL ,
PRIMARY KEY ( `thanks_id` )
);
MySQL said:
#1050 - Table 'phpbb_thanks' already exists
This indicates that phpbb_thanks is already created in your database, you will have to either drop that table or just simply don't run any SQL.'phpbb_thanks' already exists
I think what he asked is a new feature, not current feature. It is possible of course, but POST works just nicely.Hi guys
Is it possible that the page is not refreshed after clicking the thanks button?(Ajax)
Best regards
zenrei wrote:how could that happen? it has to refresh because it adds the thank list under the post. if it didn't refresh, that would never happenManhattan wrote:Manhattan wrote:Hi guys
Is it possible that the page is not refreshed after clicking the thanks button?(Ajax)
Best regards
Nice sugestionwingnut144 wrote:What would need to change in the code so that a email was sent to the user who received thanks letting them know that someone thanked them??
Is this hard to add to the MOD??