Osclass forums
Support forums => Themes => Modern => Topic started by: mandi007 on February 03, 2018, 09:37:43 am
-
i need to input the category in the item post url like we input in search page like domain.com/search/pattern,nokia/category,mobile-phones"
likewise
domain.com/item/new/category,mobile-phones
how to input category in the post url so the category is preselected
-
***CORRECTED***
Hi,
Theme header.php
Replace:
<?php if( osc_users_enabled() || ( !osc_users_enabled() && !osc_reg_user_post() )) { ?>
with:
<?php if( osc_users_enabled() || ( !osc_users_enabled() && !osc_reg_user_post() )) {
$current_category = osc_search_category_id();
if (count($current_category) == 1) {
$hasSubcategories = Category::newInstance()->findSubcategoriesEnabled($current_category[0]);
if (empty($hasSubcategories)) {
$current_category = Category::newInstance()->findByPrimaryKey($current_category[0]);
View::newInstance()->_exportVariableToView('category', $current_category);
}
} ?>
Regards
-
hi teseo happy to see you , i thought you left this forum because you are in spot light in all threads now now i cant find you like old days ;D
i need to input a category in item post url, for example a category named mobile-phone by name or id so the loaded page comes with a pre selected category. so user no need to select a category.
i want to display this link in the category page so the user click this link it should take me to item-post page with the category pre selected that we give in the url.
explained again in different view so you can better understand my need...
the modifcation you given will it help me to achieve this
-
Oh my god .......... it is working teseo!!!!
you are the God Father of this clan
-
teseo a small problem,
if from main category a user is clicking the item post url parent category is pre selected but the sub category drop down is not showing and if i submit the form it says category invaild because of sub not selected, any solution .....
but from sub category page eveything works fine but only parent category is problem
-
how to restrict like if(!parent_category){your code} or else normal item post link
-
See my corrected post above.
Regards
-
Thank you working awesome
-
You're welcome. :) Please add [SOLVED] to the title of this thread.
Regards