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)

Christos Teriakis 10-22-2011 10:40 AM

Quote:

Originally Posted by sadiq6210 (Post 2260101)
3 & 4, Could I know please from where can I align all cells to the center?

Changing the aligment is a very easy job. I don't think that it will get you more than ....a week:D.

You need to modify the file classifieds.php and search for: FormatColumn . To help you, it appears 32 times in the code. By the end of this line you'll find something: "left" or "center" or "right". Depending on the field (eg "adtype"), you can change it to opposite, or make all "center".

As for ????. It appears only there, or in all Arabic words?

Chris

sadiq6210 10-22-2011 10:50 AM

Quote:

Originally Posted by ChrisTERiS (Post 2260104)
Changing the aligment is a very easy job. I don't think that it will get you more than ....a week:D.

You need to modify the file classifieds.php and search for: FormatColumn . To help you, it appears 32 times in the code. By the end of this line you'll find something: "left" or "center" or "right". Depending on the field (eg "adtype"), you can change it to opposite, or make all "center".

As for ????. It appears only there, or in all Arabic words?

Chris

I just need this hint
I will do it :D

Quote:

As for ????. It appears only there, or in all Arabic words?
The words which I translated from "admincp" It is okay
but the words which I translated from ar.php It appears as (???? ?? ????) :confused:

Christos Teriakis 10-22-2011 02:05 PM

Quote:

Originally Posted by sadiq6210 (Post 2260106)
I just need this hint
I will do it :D



The words which I translated from "admincp" It is okay
but the words which I translated from ar.php It appears as (???? ?? ????) :confused:

Most probably you edited the file with the phrases with a text editor. Are you sure that the editor saved the file in windows-1256? Some editors by default are saving in iso-8859-1 or windows-1251

Chris

lazytown 10-22-2011 02:19 PM

The reason the pages are not being indexed in google (seo) is not because of the urls, htaccess, etc. Don't waste your time on that.
They are not being indexed because much of the content in the free version is in an iframe. Iframes are generally not indexed by google and are very bad for seo.

This is the most important reason for purchasing the pro version that does not use iframes, according to the author. I suspect this will lead to some immediate pro version sales (you're welcome, lol).

fwulfers 10-22-2011 03:02 PM

I have been using these Custom Rewrite Rules in vBSEO. I think they were inlcuded in a previous version. They do a good job in translating URLs with variables (?do=viewitem&itemid=28) into a static link. For example http://saabworld.net/classifieds-28/

Code:

'^classifieds\.php\?do=viewitem&itemid=(.*)$' => 'classifieds-$1/'
'^classifieds\.php\?do=searchtimeframe&timeframe=(.*)$' => 'classifieds/new-days-back-$1/'
'^classifieds\.php\?do=addedititem$' => 'classifieds/addedititem/'
'^classifieds\.php\?do=saveupdateitem$' => 'classifieds/saveupdateitem/'
'^classifieds\.php\?do=myprofile$' => 'classifieds/myprofile/'
'^classifieds\.php\?do=profile&profileid=(.*)$' => 'classifieds/profileid$1/'
'^classifieds\.php\?do=myitems$' => 'classifieds/myitems/'
'^classifieds\.php\?do=myitems&tab=(.*)$' => 'classifieds/myitems-tab-$1/'
'^classifieds\.php\?do=mybids$' => 'classifieds/mybids/'
'^classifieds\.php\?do=myhistory$' => 'classifieds/myhistory/'
'^classifieds\.php\?do=myhistory&tab=(.*)$' => 'classifieds/myhistory-$1/'
'^classifieds\.php\?do=searchseller&sellerid=(.*)$' => 'classifieds/sellerid-$1/'
'^classifieds\.php\?do=searchresults$' => 'classifieds/searchresults/'
'^classifieds\.php\?do=approveads$' => 'classifieds/approveads/'
'^classifieds\.php\?do=approvereports$' => 'classifieds/approvereports/'
'^classifieds\.php\?do=certified$' => 'classifieds/certified/'
'^classifieds\.php\?do=addcertified$' => 'classifieds/addcertified/'
'^classifieds\.php\?do=removecertified&memberid=(.*)$' => 'classifieds/removecertified-memberid-$1/'
'^classifieds\.php\?do=contactseller$' => 'classifieds/contactseller/'
'^classifieds\.php\?do=postreport$' => 'classifieds/postreport/'


sadiq6210 10-23-2011 04:38 AM

Quote:

Originally Posted by ChrisTERiS (Post 2260153)
Most probably you edited the file with the phrases with a text editor. Are you sure that the editor saved the file in windows-1256? Some editors by default are saving in iso-8859-1 or windows-1251

Chris


Now, It is Perfect ^_^

We finished the design/layout/style. I will start to modify some features and remove others to end up with awesome student bookshop. =)

Thanks Chris
I expect that we will install it online next month.

Christos Teriakis 10-23-2011 05:45 AM

Quote:

Originally Posted by sadiq6210 (Post 2260437)
Now, It is Perfect ^_^

We finished the design/layout/style. I will start to modify some features and remove others to end up with awesome student bookshop. =)

Thanks Chris
I expect that we will install it online next month.

...hehehe.... I'm more perfectionist than you. Is not perfect yet. The perfect should be when you place the grid title on the right:D
Open the file microclassifieds/datagrid/styles/bluesky/csss/dgstyle.css and modify:
Code:

.dgHeader, .dg_dataTable .editTitle
{
      background: url(../icons/column_header.gif) repeat-x 0 -1px;
      border: 1px solid #B1D8E2;
}

to
Code:

.dgHeader, .dg_dataTable .editTitle
{
      background: url(../icons/column_header.gif) repeat-x 0 -1px;
      border: 1px solid #B1D8E2;
      text-align: right;
}

Next month??? And you stressed me for something for next month???:eek::)

Chris

judgeserg 10-27-2011 09:56 AM

Great job! I will think over the purchase of this wonderful product.
Alternative languages ​​available, or to translate the most?

Christos Teriakis 10-27-2011 10:10 AM

Quote:

Originally Posted by judgeserg (Post 2262006)
Great job! I will think over the purchase of this wonderful product.
Alternative languages ​​available, or to translate the most?

Without to be totally sure, I think that there are translations for Spanish, German, Cyrillic. But nobody post anything here.

Chris

judgeserg 10-27-2011 10:18 AM

Interested in Russian (Cyrillic) :)


All times are GMT. The time now is 07:47 PM.

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.02722 seconds
  • Memory Usage 1,754KB
  • 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
  • (3)bbcode_code_printable
  • (7)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