Title: Bob's Replies | WordPress.org

---

# Bob

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fixed Widget and Sticky Elements for WordPress] Q2W3 Fixed Widget dont working](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/)
 *  [Bob](https://wordpress.org/support/users/easybreezyitems/)
 * (@easybreezyitems)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/page/2/#post-3613614)
 * Thank you so much!
 * I made the changes in my cpanel, and it worked perfectly!
 * Thanks again!:)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fixed Widget and Sticky Elements for WordPress] Q2W3 Fixed Widget dont working](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/)
 *  [Bob](https://wordpress.org/support/users/easybreezyitems/)
 * (@easybreezyitems)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/page/2/#post-3613612)
 * this is the sidebar.php;
 * _[ Moderator Note: [Please post code](http://codex.wordpress.org/Forum_Welcome#Posting_Code)
   or markup snippets between backticks or use the code button. ]_
 *     ```
       <?php
       if ( option::get('ad_side_select') == 'on' && option::get('ad_side_pos') == 'Before widgets' ) {
   
       	?><div class="banner">
   
       		<?php if ( option::get('ad_side_code') <> "" ) {
       			echo stripslashes(option::get('ad_side_code'));
       		} else {
       			?><a>"><img src="<?php echo option::get('ad_side_imgpath'); ?>" alt="<?php echo option::get('ad_side_imgalt'); ?>" /></a><?php
       		} ?>
   
       	</div><?php
   
       }
   
       if ( function_exists('dynamic_sidebar') ) dynamic_sidebar('Sidebar');
   
       if ( option::get('ad_side_select') == 'on' && option::get('ad_side_pos') == 'After widgets' ) {
   
       	?><div class="banner">
   
       		<?php if ( option::get('ad_side_code') <> "" ) {
       			echo stripslashes(option::get('ad_side_code'));
       		} else {
       			?><a>"><img src="<?php echo option::get('ad_side_imgpath'); ?>" alt="<?php echo option::get('ad_side_imgalt'); ?>" /></a><?php
       		} ?>
   
       	</div><?php
   
       }
       ?>
   
       <div class="cleaner"> </div>
       ```
   
 * I added what you said at the start, so the beginning looked like this;
 *     ```
       <?php
       if ( option::get('ad_side_select') == 'on' && option::get('ad_side_pos') == 'Before widgets' ) {
   
       	?><div id="%1$s" class="banner">
       ```
   
 * But nothing happened, it is still having the same problem
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fixed Widget and Sticky Elements for WordPress] Q2W3 Fixed Widget dont working](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/)
 *  [Bob](https://wordpress.org/support/users/easybreezyitems/)
 * (@easybreezyitems)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/page/2/#post-3613610)
 * The post page slowly goes up when I activate the plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fixed Widget and Sticky Elements for WordPress] Q2W3 Fixed Widget dont working](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/)
 *  [Bob](https://wordpress.org/support/users/easybreezyitems/)
 * (@easybreezyitems)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/page/2/#post-3613609)
 * This is my functions.php;
 * _[ Moderator Note: [Please post code](http://codex.wordpress.org/Forum_Welcome#Posting_Code)
   or markup snippets between backticks or use the code button. ]_
 *     ```
       <?php
       /**
        * WPZOOM Theme Functions
        *
        * Don't edit this file until you know what you're doing. If you mind to add
        * functions and other hacks please use functions/user/ folder instead and
        * functions/user/functions.php file, those files are intend for that and
        * will never be overwritten in case of a framework update.
        */
   
       /**
        * Paths to WPZOOM Theme Functions
        */
       define("FUNC_INC", get_template_directory() . "/functions");
   
       define("WPZOOM_INC", FUNC_INC . "/wpzoom");
       define("THEME_INC", FUNC_INC . "/theme");
       define("USER_INC", FUNC_INC . "/user");
   
       /** WPZOOM Framework Core */
       require_once WPZOOM_INC . "/init.php";
   
       /** WPZOOM Theme */
       require_once THEME_INC . "/functions.php";
       require_once THEME_INC . "/sidebar.php";
       require_once THEME_INC . "/post-options.php";
   
       /* Theme widgets */
       require_once THEME_INC . "/widgets/featuredposts.php";
       require_once THEME_INC . "/widgets/flickrwidget.php";
       require_once THEME_INC . "/widgets/social.php";
   
       /** User functions */
       require_once USER_INC . "/functions.php";
   
       function search_by_title_only( $search, &$wp_query )
       {
           global $wpdb;
           if ( empty( $search ) )
               return $search; // skip processing - no search term in query
           $q = $wp_query->query_vars;
           $n = ! empty( $q['exact'] ) ? '' : '%';
           $search = '';
           $searchand = '';
           foreach ( (array) $q['search_terms'] as $term ) {
               $term = esc_sql( like_escape( $term ) );
               $search .= "{$searchand}($wpdb->posts.post_title LIKE '{$n}{$term}{$n}')";
               $searchand = ' AND ';
           }
           if ( ! empty( $search ) ) {
               $search = " AND ({$search}) ";
               if ( ! is_user_logged_in() )
                   $search .= " AND ($wpdb->posts.post_password = '') ";
           }
           return $search;
       }
       add_filter( 'posts_search', 'search_by_title_only', 500, 2 );
       ```
   
 * I dont think what u said has it in there
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fixed Widget and Sticky Elements for WordPress] Q2W3 Fixed Widget dont working](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/)
 *  [Bob](https://wordpress.org/support/users/easybreezyitems/)
 * (@easybreezyitems)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/q2w3-fixed-widget-dont-working/#post-3613607)
 * Hi,
    The theme that I’m using (Photoria) is not working with the plugin. Can 
   you give me instructions to make it compatible to the photoria website. I do 
   not know too much about php programming
 * Here is my [site](http://easybreezyitems.com)

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