Paul de Wouters
Forum Replies Created
-
Forum: Installing WordPress
In reply to: cannot login in admin accountadding a new user to WordPress won’t break your site, there must be something else that causes the admin to be unavailable.
did you change themes or add a plugin?having the same error with the Image widget plugin. I will notify the plugin author
I’m using the following code to display the carousel:
echo do_shortcode('[jj-ngg-jquery-carousel html_id="about-jcarousel" gallery="6" visible="4" scroll="1" animation="slow" auto="3" skin_class="jcarousel-skin-krf" height="150" width="150" gap="15" wrap="circular"]');
Forum: Plugins
In reply to: [Taxonomy Images] image size = fullthank you!
same issue here, need a fix!
Forum: Plugins
In reply to: [JJ NextGen JQuery Carousel] CSS important declarationsok, I understand now. I used the gap parameter to add margin between the items
Forum: Plugins
In reply to: [Taxonomy Images] combining logic of my function with tax imagesMichael,
how do I test if there is an image assigned to the taxonomy?
thanksForum: Plugins
In reply to: [Post Types Order] plugin makes my nav menu disappearthe url is : https://deepfry.wpconsult.net/
there are 2 links (home,projects) generated by code :// Filter wp_nav_menu() to add additional links and other output function wpc_nav_menu_items($items) { $homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home') . '</a></li>'; $newestprojectlink = '<li class="projects"><a href="' . wpc_get_latest_project_url() . '">' . __('Projects') . '</a></li>'; $items = $homelink . $newestprojectlink . $items; return $items; }
and the rest are from a WP 3 nav menu.
when I activate the plugin, the menu items aren’t being createdForum: Plugins
In reply to: [Facebook Tab Manager] facebook tab disappeared?that’s weird , I don’t see it
sorry, that is only when I have debug set to true, so you can ignore this.
there’s no way to delete a post or threadthe errors were appearing in the admin not the front end.
I think it was something to do with the theme I was working on because with another theme there was no errorForum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Suggestionsanother suggestion : use the slug as the class and id in the HTML because I created a slideshow called “Home Page” and it generated 2 classes : ‘home’ and ‘page’ and these classes are already in use.
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] use smaller javascript (cycle lite)this is what I did to replace the script in my theme functions.php:
//replace meteor slides cycle plugin with more lightweight add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 ); function my_deregister_javascript() { wp_deregister_script( 'jquery-cycle' ); wp_register_script('jquery-cycle', get_stylesheet_directory_uri() . '/js/jquery.cycle.lite.min.js', 'jquery'); wp_enqueue_script('jquery-cycle'); }
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Theme Integrationyes, would be nice to be able to hide the documentation and settings menus when the site is shipped to client
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] allow shortcodes in textareathanks Derek