place status select
« on: March 04, 2016, 09:13:25 AM »
Hello,

On Backoffice Manager Plugin > status setting , I see  :
Place status select to item post & edit page manually using this function:

 <?php bo_mgr_status_post_form($item_id); ?> 
 <?php bo_mgr_status_search_form(); ?>
 <?php echo bo_mgr_show_status(); ?>


I'm not sure the place where must be inserted.
I use Patricia theme.

Thanks for help.

*

MB Themes

Re: place status select
« Reply #1 on: March 04, 2016, 09:49:45 AM »
@victorelectronics

In plugin settings it is nicely explained. Not sure why you copy only links and not also text that is there and that explain everything:

Place status select to item post & edit page manually using this function:
Code: [Select]
<?php bo_mgr_status_post_form($item_id); ?>item_post.php, item_edit.php

Place status select to search page form manually using this function:
Code: [Select]
<?php bo_mgr_status_search_form(); ?>search.php - between <form> & </form> tags

Place status on listings page or search page using function:
Code: [Select]
<?php echo bo_mgr_show_status(); ?>item.php, search_list.php, search_gallery.php
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: place status select
« Reply #2 on: March 04, 2016, 11:21:12 AM »
hi,

my question was not clear : In what row must inserted if is required this or everywhere in the file?

sorry for incomplete question, was a mistake.

Thank You.

ps : for the second code, it's clear.
« Last Edit: March 04, 2016, 12:30:55 PM by victorelectronics »

*

MB Themes

Re: place status select
« Reply #3 on: March 04, 2016, 12:34:30 PM »
@victorelectronics
Every theme differs so there is no exact line.
Simply do trial and error, there is no issue with that.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Re: place status select
« Reply #4 on: March 04, 2016, 12:41:13 PM »
ok, got it.

Thanks.