Title: Installation and layout
Last modified: August 21, 2016

---

# Installation and layout

 *  Resolved [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/)
 * I can’t install the plugin from nor with the WP dashboard or with loading from
   a folder, but only with FTP (I paste the plugin in wp-content/plugins as I’m 
   on a local installation). I would like to have a setup section with parameters
   like the beginning number if different from 1, the position (below all the posts
   on the right), some text before the number (“Post no.” 1, font, so that I don’t
   have to write no php and no css, or, at least the plugin should create a class
   I can modify in the css. Thanx
 * [https://wordpress.org/plugins/sequential-post-number-display/](https://wordpress.org/plugins/sequential-post-number-display/)

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/installation-and-layout/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/installation-and-layout/page/2/?output_format=md)

 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760008)
 * Kindly use this code to display the sequence number.
 *     ```
       <?php echo get_post_meta($post->ID,'incr_number',true); ?>
       ```
   
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760015)
 * I was using the shortcode and it worked even if I don’t want to add it manually
   in each post, but the code <?php echo get_post_meta($post->ID,’incr_number’,true);?
   > don’t display anything.
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760017)
 * Sorry My wrong, kindly use this one.
 *     ```
       <?php echo get_post_meta(get_the_ID(),'incr_number',true); ?>
       ```
   
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760020)
 * No success 🙁
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760022)
 * It will display in reverse order.
 * May I know what are you looking for?
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760032)
 * Sorry, my fault. The number is ok, but I need to move it and actually I can’t,
   and then formatting it. Also, I have to add number only for certain categories
   of posts (2 custom post types) so that I need an include. Please see an image
   of that in another site of mine. Thank you
 * [http://www.angiolettochecucina.it/number.html](http://www.angiolettochecucina.it/number.html)
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760035)
 * In that case you have to write conditional statement to display the number for
   certain category. Kindly let me know if I can help you in that code.
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760040)
 * Unfortunately I’m not a programmer 🙁 and my php and css knowledges are very 
   poor. Could you kindly add conditional statements and css changes as WP plugin
   parameters? I’m sure this will be very useful for many other users, thanks.
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760047)
 * I cant add conditional Statements. I don’t know how user wants it to display,
   like in your case in specific categories.
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760051)
 * With plugin parameters users could choose if displaying all categories (e.g.-
   1) or an array (e.g.2,5,11). Users probably need to choose post categories because
   of blog normal posts and custom post types which probably only need to numbered.
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760060)
 * I kept this in my mind. Will try to incorporate in my next development phase.
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760063)
 * Thanks so much 😉
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760187)
 * I am marking this as resolved.
 * Will let you know as soon as I include that feature.
 *  Thread Starter [kkriss](https://wordpress.org/support/users/kkriss/)
 * (@kkriss)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760188)
 * You think it will happen soon? My client is in a little hurry … 🙁
 *  Plugin Author [The Grey Parrots](https://wordpress.org/support/users/greyparrots/)
 * (@greyparrots)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/installation-and-layout/#post-4760190)
 * It will take some time, I have to create the list of features and after completing
   our current assignment, will work on this one.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/installation-and-layout/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/installation-and-layout/page/2/?output_format=md)

The topic ‘Installation and layout’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/sequential-post-number-display.svg)
 * [Sequential Post Number Display](https://wordpress.org/plugins/sequential-post-number-display/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/sequential-post-number-display/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/sequential-post-number-display/)
 * [Active Topics](https://wordpress.org/support/plugin/sequential-post-number-display/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/sequential-post-number-display/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/sequential-post-number-display/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [installation](https://wordpress.org/support/topic-tag/installation/)
 * [layout](https://wordpress.org/support/topic-tag/layout/)

 * 18 replies
 * 2 participants
 * Last reply from: [kkriss](https://wordpress.org/support/users/kkriss/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/installation-and-layout/page/2/#post-4760320)
 * Status: resolved