Title: Jun Sanchez's Replies | WordPress.org

---

# Jun Sanchez

  [  ](https://wordpress.org/support/users/pixeljun/)

 *   [Profile](https://wordpress.org/support/users/pixeljun/)
 *   [Topics Started](https://wordpress.org/support/users/pixeljun/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pixeljun/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pixeljun/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pixeljun/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pixeljun/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pixeljun/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Page not updating after editing](https://wordpress.org/support/topic/page-not-updating-after-editing/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/page-not-updating-after-editing/#post-7588526)
 * Are you editing the permalink of the news/event page? Can you give more details?
 * Are you using plugin for you news and event page?
 * Try re-saving your permalinks.
    Settings >> Permalinks – Then just hit save w/
   o changing anything.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Traffica -Fourth footer widget](https://wordpress.org/support/topic/traffica-fourth-footer-widget/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/traffica-fourth-footer-widget/#post-7587715)
 * Yes, i forgot. You should create a child theme first.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Traffica -Fourth footer widget](https://wordpress.org/support/topic/traffica-fourth-footer-widget/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/traffica-fourth-footer-widget/#post-7587637)
 * If you are referring to this theme. – [https://wordpress.org/themes/traffica/](https://wordpress.org/themes/traffica/)
 * Open the sidebar-footer.php
 * And replace with following code,
    But remember, the footer widgets is only up
   to “Third Footer Widget” now.
 *     ```
       <div class="grid_8 alpha">
           <div class="footer_widget first">
               <?php if (is_active_sidebar('first-footer-widget-area')) : ?>
                   <?php dynamic_sidebar('first-footer-widget-area'); ?>
               <?php else : ?>
                   <h4><?php _e('About Us','traffica');?></h4>
                   <p><?php _e('We make simple and easy to WordPress themes that will make your website easily. You just need to install it and your website will be ready within a minute.','traffica');?></p>
               <?php endif; ?>
           </div>
       </div>
       <div class="grid_8">
           <div class="footer_widget">
               <?php if (is_active_sidebar('second-footer-widget-area')) : ?>
                   <?php dynamic_sidebar('second-footer-widget-area'); ?>
               <?php else : ?>
                   <h4><?php _e('OUR PAGES','traffica');?></h4>
                   <ul>
                       <li><a href="#"><?php _e('Default template ','traffica');?></a></li>
                       <li><a href="#"><?php _e('Full-width template ','traffica');?></a></li>
                       <li><a href="#"><?php _e('Home template ','traffica');?></a></li>
                   </ul>
               <?php endif; ?>
           </div>
       </div>
       <div class="grid_8 omega">
           <div class="footer_widget">
               <?php if (is_active_sidebar('third-footer-widget-area')) : ?>
                   <?php dynamic_sidebar('third-footer-widget-area'); ?>
               <?php else : ?>
                   <h4><?php _e('Use of Widgets','traffica');?></h4>
                   <p><?php _e('You can easily drag and drop the widgets here to display under the footer. You just need to go to your dashboard and there you can choose the appearance option and then widgets.','traffica');?></p>
               <?php endif; ?>
           </div>
       </div>
       ```
   
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Can A Web Designer Create a Website with WordPress Without Knowing How To Code?](https://wordpress.org/support/topic/can-a-web-designer-create-a-website-with-wordpress-without-knowing-how-to-code/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/can-a-web-designer-create-a-website-with-wordpress-without-knowing-how-to-code/#post-7583176)
 * Yes. I agree with mburridge, you should at least have a knowledge of PHP
    and
   WordPress coding standards.
 * WordPress has default twentythirteen to fifteen theme included, open those files
   and try to understand the structures codes.
 * You can also google for “wordpress cheat sheet pdf”.
 * There’s a plugin like “Visual Composer” you may find helpful for designing pages
   without coding. A theme called “enfold” is very easy to manage can help you design
   your websites.
 * You can also _[Link redacted per [forum rules](https://codex.wordpress.org/Forum_Welcome#The_Bad_Stuff)]_
   if you need help for your projects.
 * Good luck..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Centering social links](https://wordpress.org/support/topic/need-code-help-2/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/need-code-help-2/#post-7586952)
 *     ```
       #sc_menu{
       	text-align: center;
       }
       #sc_menu > li{
       	float: none; /*making sure no css conflicts*/
       	display: inline-block;
       	vertical-align: middle;
       	margin: 0 3px; /* add small margin between icon */
       }
       #sc_menu > li > a{
       	display: block;
       }
       ```
   
 * Optional
 *     ```
       #sc_menu{
       	text-align: center;
       }
       #sc_menu > li{
       	float: none;
       	display: inline-block;
       	vertical-align: middle;
       	margin: 0 3px;
       	width: 35px;
       	height: 35px;
       	background: #363e4a;
       	border-radius: 50%;
       	text-align: center;
       	padding: 6px 0;
       	color: #fff;
       }
       #sc_menu > li > a{
       	display: block;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] [cfdb-save-form-post] Ajax Save](https://wordpress.org/support/topic/cfdb-save-form-post-ajax-save/)
 *  Thread Starter [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/cfdb-save-form-post-ajax-save/#post-7479362)
 * Hi Michael,
 * Awesome, It’s now working 🙂
 * Thank you so much.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Pagination not working](https://wordpress.org/support/topic/pagination-not-working-67/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/pagination-not-working-67/#post-5543497)
 * While on my way checking your code in my local,
    Have tried:
 *     ```
       <div class="navigation">
       <div class="alignleft"><?php previous_posts_link( '« Previous Entries' ); ?></div>
       <div class="alignright"><?php next_posts_link( 'Next Entries »', '' ); ?></div>
       </div>
       ```
   
 * or use and alternative plugin like [https://wordpress.org/plugins/wp-paginate/](https://wordpress.org/plugins/wp-paginate/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cimy User Extra Fields] [Plugin: Cimy User Extra Fields] Wrong datatype](https://wordpress.org/support/topic/plugin-cimy-user-extra-fields-wrong-datatype/)
 *  [Jun Sanchez](https://wordpress.org/support/users/pixeljun/)
 * (@pixeljun)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-cimy-user-extra-fields-wrong-datatype/#post-2565765)
 * Go to Cimy Extra Fields settings..
    There should be a fix problem button there.

Viewing 8 replies - 1 through 8 (of 8 total)