digipifini
Forum Replies Created
-
Forum: Plugins
In reply to: [SC Catalog] [Plugin: SC Catalog] catalog better category managementusing the builtin jQuery to create a simple sorting table and then saving that order to a field in the database would be the easiest it would seems. It would just require one additional field to the DB showing the order of the items for when they are read out, keeping everything as lightweight as it currently is.
Forum: Plugins
In reply to: [SC Catalog] Remove "Read More" & replacing it with a clickable imageSorry, I had replaced the ‘sc-catalog’ name with ‘popup-catalog’ for testing purposes.
Forum: Plugins
In reply to: [SC Catalog] Remove "Read More" & replacing it with a clickable imageI had previously mentioned a custom.css file which can be located in the active theme folder. This would also allow for the input of a custom icon or button by using css to do the work without intrusive code in the main plugin file. It only takes a few lines of code to add in, and this technique has been used in NextGen Gallery as well.
Starting at line 93 in the sc-catalog.php file:
// Add custom style
//function pop_catalog_styles() {
// wp_enqueue_style( ‘thickbox’ );// if( locate_template(‘/pop-catalog.css’) ){
// wp_enqueue_style( ‘pop-catalog’, get_stylesheet_directory_uri().’/pop-catalog.css’, __FILE__ );
// }else{
// wp_enqueue_style( ‘pop-catalog’, plugins_url( ‘/pop-catalog.css’, __FILE__ ) );
// }
//}
//add_action( ‘wp_print_styles’, ‘pop_catalog_styles’ );Forum: Plugins
In reply to: [SC Catalog] [Plugin: SC Catalog] BEWARE!!!Use WordPress to enqueue your scripts and make sure to use unique prefixes, these two things will fix most problems people have. Like scil has stated, this is FREE, takes steps to prevent development issues (backups, wordpress snapshots). With the number of scripts going off at the same time on a page is can get a little messy if you don’t. I think branding it with the UPPERCASE SCREAMING is a little much, and is not deserved.
Forum: Plugins
In reply to: [SC Catalog] [Plugin: SC Catalog] catalog better category managementWhat is the category management? Do you have a sample concept? I would also be interested in seeing perhaps a drop down list or some type of dynamic list, perhaps jquery based as it is a standard part of the wordpress install.