Viewing 15 replies - 31 through 45 (of 55 total)
  • Max Bond!

    Nice!
    Thanks a lot sir, your plugins is now working ??
    Thanks a lot for the support!

    Hey sir, i just change my theme.
    And i found problems with Q2W3 and my theme.
    I want make 2 widget fixed.
    But in real, only 1 widget is fixed

    My Site

    I want my Popular post / Recent Post fixed. But only my social buttons fixed.
    Are you have a solutions for this?
    Thanks

    Plugin Contributor Max Bond

    (@max-bond)

    Deprito!

    I want my Popular post / Recent Post fixed.

    I checked this widget html source code on your site. It differs from other widgets. That means this widget does not use before and after widget parameters defined in register-sidebar function.

    Try to contact widget author.

    Hi Max
    I’ve found out why the fixed-widget plugin “suddenly” stopped working: after I’ve decrypted the footer
    (was a free wordpress theme with the footer containing some spam links).
    So now the footer.php file is containing only html code and there is no more
    the wp_footer() function that is required by the plugin.

    I am not expert at all with php but trying to add in the footer.php (at the bottom) the code
    <?php wp_footer(); ?>
    The whole website won’t load ?? any hints?
    Thanks

    Plugin Contributor Max Bond

    (@max-bond)

    caccamo88!

    Look at default theme footer.php
    For example TwentyTwelve:

    <?php wp_footer(); ?>
    </body>
    </html>

    If the site still wont work, enable debug mode in wp-config.php:
    define('WP_DEBUG', true);
    You should see the actual errors which prevent site to load

    “Something wrong”
    Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks.

    then report a line number on
    …./wp-includes/functions.php

    that is the line
    trigger_error( sprintf( __( ‘%1$s was called incorrectly. %2$s %3$s’ ), $function, $message, $version ) );

    the whole “original” footer.php of the theme was

    <div class="clear body-clear"></div>
    		</div>
    	</div>
    
    	<div id="footer">
    		<div class="footer-border"></div>
    		<div id="footer-pad" class="append-clear">
    			<?php
    				$menu = wp_nav_menu(array(
    				     'echo' => false,
    					'theme_location' => 'footer',
    					'container' => false,
    				     'items_wrap' => '%3$s',
    				     'walker' => new Padd_Walker_Inline_Menu(),
    				));
    				$menu = substr($menu, 0, strlen($menu) - strlen('<span class="pipe"> | </span>'));
    				echo '<p class="menu">', $menu, '</p>';
    			?>
    			<?php padd_theme_credits(); ?>
    			<div class="clear"></div>
    		</div>
    	</div>
    
    	</div>
    </div>
    <?php wp_footer(); ?>
    <?php
    $tracker = Padd_Theme_Option::get('tracker_bot','');
    if (!empty($tracker)) {
    	echo stripslashes($tracker);
    }
    ?>
    </body>
    </html>

    I’ve found out
    <?php wp_footer(); ?>
    in the “decrypted” footerp.php would works (and so your plugin) if it’s present even
    <?php padd_theme_credits(); ?>

    I will investigate further

    suggestion for future updates:
    you should put an option like
    jsInHead: Put javascript in header instead of footer (some wp themes does not support wp_footer action)

    instead me getting crazy modifying the code (I am not expert at all) I’ve I’ve solved with that option of another plugin similar to your

    Hi Max. Hope you are having a good Summer so far. I just tried to use the plugin on this site. It doesn’t seem to work. It works fine on my other sites so far. Hope you can help me out. Thanks in advance!

    Plugin Contributor Max Bond

    (@max-bond)

    cloudcuckoo,

    cannot open your site. Is it online?

    Plugin Contributor Max Bond

    (@max-bond)

    cloudcuckoo,

    you have very common widget id problem on that site! See FAQ!

    I have installed the plugin to my blog. But it is not working properly. So here i am sending my blog URL and i request some assistance from you regarding this matter.

    My Blog

    Thanks !!

    Plugin Contributor Max Bond

    (@max-bond)

    stranger0721,

    your theme is not generating id for the widgets. See FAQ for solution!

    Hello,
    I also have an issue with the plugin not working on my site. I had a look at the code and the theme seems to have ids for the widgets:
    'before_widget' => '<aside class="sidebar-content widgets %2$s" id="%1$s">',

    Thanks for your help

Viewing 15 replies - 31 through 45 (of 55 total)
  • The topic ‘Q2W3 Fixed Widget dont working’ is closed to new replies.