Jump to content

Jyoti Rani

Clients
  • Posts

    76
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jyoti Rani's Achievements

  1. https://www.marketingcheckpoint.com/admin/ - in the admin section only font files are getting pointed to beta.marketingcheckpoint.com . All the other files are working fine Please suggest some solution.
  2. URL issue has been resolved after clearing Cache. Can any one please suggest solution for the Missing icons? You can view on the live site also. I have shared the link too
  3. I have created some sub menu with custom code, But they are still pointing to old URL. for e.g. https://beta.marketingcheckpoint.com/mail/send/ this should be moved to https://www.marketingcheckpoint.com/mail/send/. Can you please suggest from where can I change this?
  4. Hi Randy, I have done the same process. But i am not able to see the icons on the site. https://www.marketingcheckpoint.com/ Please have a look.
  5. I have upgraded site on subdomain, Now i want to move those files on root of the site. and there will be change in the URL of the site. Will this work or i have to perform the upgrade again? Please guide
  6. Hello Marc, After the successful upgrade on the below URL. I am redirected to main url of the site rather than the url on which i have performed the upgrade. Can you please suggest something? For .e.g When i click on Go to the Suite - I m redirected to https://www.marketingcheckpoint.com/ this url rather than https://beta.marketingcheckpoint.com/ and When i click on "Go to the AdminCP" i am redirected to https://www.marketingcheckpoint.com/admin this url rather than https://beta.marketingcheckpoint.com/admin .
  7. Hi all, In the process of upgrade I am getting below error. Can any one please suggest something or should I continue anyway?
  8. php class: \IPS\forums\Topic\Post - Its fine. Should i add my functionality in below protected function processAfterCreate($comment, $values) function or any other function/Method should be used?
  9. I want to create a plugin. So, i just want to know Which IPS class and event is fired, when i add reply to new topic in forum?
  10. One more query is, when some one replied to this Topic, which event is fired internally.
  11. Its working on the betaversion of the site also. Thanks a Ton!
  12. Hello terabyte, A very big thanks to your help and prompt reply. I was able to do the changes as per your suggestions. Here is my final code and its working when user is adding Topic at my local machine. protected function processAfterCreate($comment, $values) { # Remove prefix $previousPrefix = \IPS\Db::i()->prefix; \IPS\Db::i()->prefix = ''; $user_group_id = \IPS\Member::loggedIn()->member_group_id; if ($user_group_id == 3 || $user_group_id == 4 || $user_group_id == 7 || $user_group_id == 😎 //bronze // || $user_group_id == 4) { # no need to check for double points $assign_point = 1; } if ($assign_point == 1) { $reward_mailing_points = 250; } $result = \IPS\Db::i()->select('*', 'plug_mailing_master', array('user_id=?', \IPS\Member::loggedIn()->member_id)); foreach ($result as $row) { $credit_balance = $reward_mailing_points + intval($row['credit_balance']); } # Update database with new $cc value \IPS\Db::i()->update('plug_mailing_master', array('credit_balance' => $credit_balance), array('user_id=?', \IPS\Member::loggedIn()->member_id)); # Reset prefix \IPS\Db::i()->prefix = $previousPrefix; return parent::processAfterCreate($comment, $values); }
×
×
  • Create New...