Widget won’t work due to old JavaScript? Any ideas how to make it work? [closed]

From your site i can say that script is not being loaded because of wrong opening quote for script tag.Use ” instead of ” So <script src=”http://lookbook.nu/widget/profile.js?id=2303472&width=standard&align=left&stats_fans=1&fanbox=yes&hash=14575a9cd02fd36d2758e5db3cb92b5a”></script> Should be this <script src=”http://lookbook.nu/widget/profile.js?id=2303472&width=standard&align=left&stats_fans=1&fanbox=yes&hash=14575a9cd02fd36d2758e5db3cb92b5a”></script> Update: Add <script> $LB = jQuery; </script> before the other script tag. I mean before <script src=”http://lookbook.nu/widget/profile.js?id=2303472&width=standard&align=left&stats_fans=1&fanbox=yes&hash=14575a9cd02fd36d2758e5db3cb92b5a”></script>

Is it possible to control content on different pages by checkboxing wich content is shown where on a wordpress theme page?

You can use the WordPress Settings API to do what you’re looking for. You can follow this – WordPress Settings API Tutorial ( www.ottopress.com ) to setup an options page, and depending upon the options saved in database you can show different content. Example – <?php // get the stored value in variable – foo … Read more

Keeping shortcode-generated widget and theme element in one line [closed]

To get rid of the bullets and change the alingment you’ll need CSS. For the top portion: aside.widget_polylang.amr_widget, aside.widget_polylang.amr_widget ul, aside.widget_polylang.amr_widget li { /** align with li */ display: inline-block; float:right; /** remove bullets */ list-style: none; } ul.social-icons { /** align with li */ display: inline-block; float: right; } For the bottom portion: aside.widget_polylang … Read more

Sample widget code which get data(1-5 record) from Wp_Admin panel and display to Homepage(WordPress Custom Theme)

As everyone commented above, you need to explain where you are having problem, there are a lot of ways to achieve what you want to do, Option 1 : Advance Custom Field Plugin: https://wordpress.org/plugins/advanced-custom-fields/ this can help you to create custom fields at the admin panel and display them at front-end, please see the plugin … Read more

how to add multiple menu in custom menu widget?

You can find the WP_Nav_Menu_Widget class in wp-includes/default-widgets.php:1059 Simply copy the class (with new name – Example: Foo_Nav_Widget) to your functions.php file. Edit the form method and replicate the select option (with new id/name) and any variables associated. Edit the widget method, replicate any associated variables and call your second nav menu underneath the current … Read more

Text Widget Not Working

Your posts are too wide and are overlapping the sidebar. Try changing your CSS to: .entry-content { width:55%; } Revision: #secondary.widget-area{ display:block; position:relative; } This isn’t a WordPress question, but since I’ve started trying to help I thought I’d see it through.

Sidebar Slideshow widget with text [closed]

I don’t think this StackExchange is meant to recommend plugins. However, I happen to have built this for a client before. It uses jQuery’s “jCaroussel” plugin, and you can see it in action on Oelers Makelaardij. Scoop up the minified version, it contains all plugins like Autoscrolling, Controls, etc. CSS Most of the CSS is … Read more

Random disappearance of footer widgets [closed]

Look at the “widgets_init” functions in your theme. There might be other conditions registered for the widgets. If the widgets are registered correctly with no other conditions. Next, the best place would be at the template. Look at the template where the widgets are added. There might be some “if” functions that might be controlling … Read more