vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Mary's Classifieds (https://vborg.vbsupport.ru/showthread.php?t=267194)

maineGuy72 09-10-2011 09:29 PM

Quote:

Originally Posted by k6rikko (Post 2244389)
Hello , i hope so anyone can help me with this problem. I be looking to remove 2 sections at browse classifieds (show all) . I have marked the 2 fields red where i like to remove (dont need it) . Otherwise i like to change the grid (columns) sizes. I dont find the right template or css to change this things :o

many many thanks Rikko

i believe the datagrid is hard coded and can not be change except for the skin style

Bram H 09-11-2011 07:38 AM

Quote:

Originally Posted by maineGuy72 (Post 2243352)
It is a known issue and is on the list to be fixed in this next release

Any ETA on the new release?

maineGuy72 09-11-2011 02:47 PM

i was thinking that maybe there should be a link to a pop up window where we can place wording for the classified rules. that way we can place how long the ads can run how many per used and what can be posted. thoughts?

qpurser 09-11-2011 04:57 PM

Quote:

Originally Posted by k6rikko (Post 2244389)
Hello , i hope so anyone can help me with this problem. I be looking to remove 2 sections at browse classifieds (show all) . I have marked the 2 fields red where i like to remove (dont need it) . Otherwise i like to change the grid (columns) sizes. I dont find the right template or css to change this things :o

many many thanks Rikko

I had the same question regarding the width of the fields and found it:
Go into your classifieds.php and look around line 1400. Looks like this:

// Specify each field to display with their own properties
$objGrid-> FormatColumn("logo","".$vbphrase["microclassifieds_photo"]."", "25", "0","0","100","center","imagelink:microclassif ieds/photos/thumbs/%s:loadAd(%s),id");
$objGrid-> FormatColumn("adtype","".$vbphrase["microclassifieds_grid_adtype"]."", "40", "50", "0", "100", "center", "image:microclassifieds/images/adtype%s.png");
$objGrid-> FormatColumn("title","".$vbphrase["microclassifieds_title"]."", "13", "20", 0, "350","left", "link:loadAd(%s),id");
$objGrid-> FormatColumn("categoryid","".$vbphrase["microclassifieds_category"]."", "5", "1", 0, "100", "center", "related:select name from ".TABLE_PREFIX."microclassifieds_categories where id=%s");
$objGrid-> FormatColumn("userid","User", "5", "30", 2, "5", "left");
$objGrid-> FormatColumn("username","".$vbphrase["microclassifieds_seller"]."", "5", "30", 0, "120", "center", "link:loadUser(%s),userid");
//$objGrid-> FormatColumn("sellertype","Seller Type", "5", "30", 1, "195", "left", "select:1_Individual:2_Store");
$objGrid-> FormatColumn("newused","".$vbphrase["microclassifieds_condition"]."", "5", "30", 1, "75", "center", "select:1_New:2_Used");
$arrConditions = array("['adtype']==3" => "['buynow']",
"['adtype']!=3" => "['price']"
);
$objGrid-> FormatColumn("starts","".$vbphrase["microclassifieds_post_at"]."", "5", "30", 0, "100", "center");
$objGrid-> FormatColumn("price","".$vbphrase["microclassifieds_price"]."", "5", "30", 0, "100", "center", "money:".$vbulletin->options["microclassifieds_curpre"]."");
$objGrid-> FormatColumn("location","".$vbphrase["microclassifieds_location"]."", "45", "10", "0", "200", "center");
// Store grid in variable


The last set of numbers in each row is the width.

qpurser 09-11-2011 05:00 PM

Chris,
I still have the issue my "reviews" don't show up.
I tested it and both members did a review. Waited for the amount of days to become visible as set in the options. Nothing shows up.

Also in the "auction" block at the forum sidebar.
If somebody bids the price doesn't get updated in the sidebar

Michael

qpurser 09-11-2011 05:43 PM

Premium ads:

I understood the concept how to POST a premium ad and only allow certain groups to use this.

BUT

I didn't get it or just overlooked how to EXCLUDE some usergroups from seeing or buying Premium ads

The reason I am asking:
We have in our club forum regular registered users and real club members. There are real club members who only want to sell to real club members.
The Premium ad feature would be ideal for this but only if I can exclude the general registered users from viewing or buying those Premium Ads.

How can I do this?
Michael

NTMID8 09-11-2011 10:23 PM

Quote:

Originally Posted by maineGuy72 (Post 2244403)
i believe the datagrid is hard coded and can not be change except for the skin style

Maybe a future feature request that admin can choose what columns to display or not.

iBaker 09-11-2011 11:49 PM

Quote:

Originally Posted by qpurser (Post 2244626)
I had the same question regarding the width of the fields and found it:
Go into your classifieds.php and look around line 1400. Looks like this:

// Specify each field to display with their own properties
$objGrid-> FormatColumn("logo","".$vbphrase["microclassifieds_photo"]."", "25", "0","0","100","center","imagelink:microclassif ieds/photos/thumbs/%s:loadAd(%s),id");
$objGrid-> FormatColumn("adtype","".$vbphrase["microclassifieds_grid_adtype"]."", "40", "50", "0", "100", "center", "image:microclassifieds/images/adtype%s.png");
$objGrid-> FormatColumn("title","".$vbphrase["microclassifieds_title"]."", "13", "20", 0, "350","left", "link:loadAd(%s),id");
$objGrid-> FormatColumn("categoryid","".$vbphrase["microclassifieds_category"]."", "5", "1", 0, "100", "center", "related:select name from ".TABLE_PREFIX."microclassifieds_categories where id=%s");
$objGrid-> FormatColumn("userid","User", "5", "30", 2, "5", "left");
$objGrid-> FormatColumn("username","".$vbphrase["microclassifieds_seller"]."", "5", "30", 0, "120", "center", "link:loadUser(%s),userid");
//$objGrid-> FormatColumn("sellertype","Seller Type", "5", "30", 1, "195", "left", "select:1_Individual:2_Store");
$objGrid-> FormatColumn("newused","".$vbphrase["microclassifieds_condition"]."", "5", "30", 1, "75", "center", "select:1_New:2_Used");
$arrConditions = array("['adtype']==3" => "['buynow']",
"['adtype']!=3" => "['price']"
);
$objGrid-> FormatColumn("starts","".$vbphrase["microclassifieds_post_at"]."", "5", "30", 0, "100", "center");
$objGrid-> FormatColumn("price","".$vbphrase["microclassifieds_price"]."", "5", "30", 0, "100", "center", "money:".$vbulletin->options["microclassifieds_curpre"]."");
$objGrid-> FormatColumn("location","".$vbphrase["microclassifieds_location"]."", "45", "10", "0", "200", "center");
// Store grid in variable


The last set of numbers in each row is the width.

I think the answer to a lot of users would be if the field widths could be a % instead of a hard coded width

k6rikko 09-12-2011 05:46 AM

@qpurser

Many thanks to you , i will try this :)

Another Question , how can i change the shop language , let say in german ? I was changed it in admincp/microclassifieds/general from en to de but nothing , only the datagrid wont work longer <.<

many thanks guys

Greets Rikko

ozione 09-12-2011 10:03 AM

Quote:

Originally Posted by k6rikko (Post 2244785)
@qpurser

Many thanks to you , i will try this :)

Another Question , how can i change the shop language , let say in german ? I was changed it in admincp/microclassifieds/general from en to de but nothing , only the datagrid wont work longer <.<

many thanks guys

Greets Rikko

you have a temp solution a few pages back... search throug it.


All times are GMT. The time now is 12:24 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02645 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete