Anders
Forum Replies Created
-
Yes, you have ano answered my questions either. I have asked you repeatedly how to tie my shoelaces, and you are apparently too busy doing other things. Stop what you’re doing and help ME!
Forum: Everything else WordPress
In reply to: Finding developers…when i was doing this, i contacted the developers of some of the highly rated, well done, plugins. most of those guys are looking for work, although a lot of them are busy quite often, but just an idea.
Forum: Hacks
In reply to: wp_ajax_my_action hook with json_encode puts extraneous ' ' in output bufferwhere exactly is the + inserted, after the json string?
Forum: Hacks
In reply to: Extremely inconsistent results with post types, taxonomyAt what level are you running the register_taxonomy function?
Forum: Hacks
In reply to: Call User Field within Shortcode. HelpCan you post your shortcode function code?
Forum: Hacks
In reply to: insert null values using $wpdb->inserthas $wpdb->insert($wpdb->table, array(‘field’ => ‘NULL”)); not worked?
Forum: Themes and Templates
In reply to: Can I use WordPress to….?I think so, although you may want to check out Carrington for more advanced layouts https://crowdfavorite.com/wordpress/carrington-build/. Not sure how you would go about restricting the editing of certain places though
Forum: Hacks
In reply to: Remove some profile fieldsGood solution, beyond me why these fields don’t have unique classes.
Denys, your patience with these https://www.seobook.com/freetards is amicable.
Forum: Hacks
In reply to: Open links as _blank by defaultAnother option would be to use JavaScript that forces all external links, or all links within the particular widget, to open in a new window.
I just hate seeing people modify the core!
Forum: Hacks
In reply to: Open links as _blank by defaultDo you really want to be modifying the core?
Why not just set _blank or whatever in the CMS?
Forum: Hacks
In reply to: WordPress is not secureSwitch hosts.
Forum: Plugins
In reply to: [WEB-INVOICE] [WP-INVOICE] help neededThew new version of WP-Invoice seems to be pretty good, could use a few more payment gateways – i.e. Google Checkout!!
I haven’t used web invoice but it appears to be broken.
Forum: Hacks
In reply to: Making a pricing grid plugin, so tables or divs?There is nothing wrong with using tables, especially when you’re trying to show things that should be in… table format.
There’s a lot of anti-table people on there, but most of them are speaking in regards to page layouts.
You may want to check out jQuery Data Tables too – could save you a lot of time especially if you’re displaying large amounts of data.
Forum: Hacks
In reply to: How do I pull out the image title tag?You could make a DB call if you know the image id.
i.e.:
$wpdb->get_var("SELECT post_title FROM {$wpdb->posts} WHERE ID = 18");