Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ballin

Pages: [1] 2
1
Shop Button Requests / Re: Unknown Theme
« on: July 06, 2011, 12:16:08 am »
Which SMF is it? 2.0 or 1.1.x?

2
Shop Button Requests / Re: Efsane Request!
« on: July 06, 2011, 12:09:15 am »
Go to your SMF 2.0 files in your webhost and find the 'Sources' folder; Click that and find the file called "Subs.php".

Search for:
Code: [Select]
'home' => array(
After that array add:
Code: [Select]
'shop' => array(
'title' => "Shop",
'href' => $scripturl . '?action=shop',
'show' => true,
'sub_buttons' => array(
),
),

3
Shop Button Requests / Re: Button Request for Unbroken Soldiers
« on: July 18, 2010, 08:40:44 am »
In index.template.php, look for:

Code: [Select]
   // How about the [search] button?
   if ($context['allow_search'])
      echo '<li', $current_action == 'search' ? ' id="active"' : '', '><a href="', $scripturl, '?action=search"><span>', $txt[182] , '</span></a></li>';

Under that add:
Code: [Select]
// SMF Shop Button.
   if ($context['allow_memberlist'])
      echo '<li', $current_action == 'shop' ? ' id="active"' : '', '><a href="', $scripturl, '?action=shop"><span>Shop</span></a></li>';

4
General SMFShop Discussion / Re: Not award credits for a topic?
« on: July 18, 2010, 08:30:55 am »
Go to your admin cp -> SMF Shop Administration -> General settings  -> Currency Settings & Bonuses

Edit those point rates to what you want.

5
Coding / Re: remove "View Other Members' Inventory"
« on: July 18, 2010, 08:24:34 am »
Go into your Display.template.php and remove the following:

Code: [Select]
<a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">View Inventory</a><br />

6
Coding / Re: Unable to buy items in shop
« on: May 15, 2010, 06:47:33 am »
The part where you buy from the shop.

7
Coding / Re: Unable to buy items in shop
« on: May 15, 2010, 04:05:10 am »
Post your code here.

8
Ronald, we don't have an intro board. This topic has already been replied to. Locked to prevent future bumps.

9
Items / Re: Can be added Some Card Games?
« on: May 12, 2010, 04:26:19 am »
Your welcome. Topic closed.

10
Coding / Re: SMFShop Help
« on: May 11, 2010, 08:37:08 am »
Figured it out. Locked.

11
Shop Button Requests / Re: Shop button request for bisdakworldgreen
« on: May 11, 2010, 05:00:49 am »
Are the errors for SMFShop or for the theme you downloaded?

12
Items / Re: Can be added Some Card Games?
« on: May 11, 2010, 04:59:28 am »
This would be more like making a flash game. It would have nothing at all to do with SMFShop mod.

13
Completed Shop Buttons / SMFShop Button 'Zone99'
« on: May 11, 2010, 04:56:47 am »
Ok, In /themes/zone99_xxxx/index.template.php look for:


Code: [Select]
if ($context['allow_calendar'])
echo '<li><a' , $current_action=='calendar' ? ' class="active"' : '' , ' href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a></li>';

After it add:
Code: [Select]
// SMFShop
                  echo '<li><a' , $current_action=='shop' ? ' class="current"' : '' , ' href="', $scripturl, '?action=shop"><span>Points</span></a></li>';

Change the word points to whatever you want.



14
Coding / Re: Thankyou Mod and SMFSHop
« on: May 11, 2010, 04:35:51 am »
This is already implemented into the SMFShop mod. You can set how many points a user receives when they post.

15
Coding / Re: More Numbers In Price
« on: May 11, 2010, 04:32:06 am »

Pages: [1] 2