bsapaka
Forum Replies Created
-
Forum: Plugins
In reply to: [AK Featured Post Widget] how to display metadata under title?place it above
<br style="clear:both;" />in ak_featured_post.phpForum: Fixing WordPress
In reply to: how to display custom taxonomy in a post's contentForum: Fixing WordPress
In reply to: how to display custom taxonomy in a post's contentthe answer is:
<?php $terms = get_the_terms( $post->ID , 'yourtaxonomyhere' ); foreach ( $terms as $term ) { $term_link = get_term_link( $term, 'yourtaxonomyhere' ); if( is_wp_error( $term_link ) ) continue; echo '<a href="' . $term_link . '">' . $term->name . '</a>'; } ?>Forum: Hacks
In reply to: how to display custom field/taxonomy in content via php templatesForum: Fixing WordPress
In reply to: changed URL general settings, site completely unstyled nowAnyone with the same problem, here is a helpful article
http://wordpress.shadowlantern.com/how-change-wordpress-url-phpmyadmin/
Forum: Fixing WordPress
In reply to: changed URL general settings, site completely unstyled nowOkay, I undone one change I tried before I went to phpmyadmin, which was to hardcode the siteurl and home in wp-config. I am now back to square one
Forum: Fixing WordPress
In reply to: changed URL general settings, site completely unstyled nowI have gone to phpmyadmin and changed the home and site url back to the original and to the new one – I tried both, site still broken with both
Forum: Fixing WordPress
In reply to: changed URL general settings, site completely unstyled nowWe just put the site up live for the client and I jacked everything up,
ooh this is so frustratingForum: Fixing WordPress
In reply to: changed URL general settings, site completely unstyled nowMy admin area and homepage looks like this:
Forum: Fixing WordPress
In reply to: Table in wordpress postWP-Table Reloaded (now tablepress) allows you to create your own tables, import excel csv files, search and sort tables live, and customize in many other ways. It did the job for me, highly recommend it
Forum: Fixing WordPress
In reply to: How do I remove the blog section?on the admin panel, in appearance>customize, set front page to a static page. Add new pages, then make sure to put them on a menu on appearance>menu
Forum: Plugins
In reply to: [Collapse-O-Matic] title keeps wrappingbaden, not sure what the issue was, but i fixed it with display:block
Forum: Fixing WordPress
In reply to: what do i do if i get a php error that messes up everythingbrashrebel, that works, thanks
Forum: Fixing WordPress
In reply to: how to get columns within widget?sorry, I meant – how do i get columns within a widget area – so like the footer area, I would like to split into three sections so footers go side by side instead of stacking on top of one another
fixed