David Radovanovic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide page titles on a site using theme 2010add
display: none;property to title rule. I don’t think that’s a good idea though 😉 Unless you want your site hidden to search engines.Forum: Fixing WordPress
In reply to: Authorship markup for several authors…Warning: Missing required field “entry-title”.
Warning: Missing required field “updated”.
Warning: Missing required hCard “author”.and similar errors can be fixed by adding the necessary class tags. A great article is here: http://wp.tutsplus.com/tutorials/theme-development/integrating-google-rich-snippets-into-a-wordpress-theme/
and here’s a interesting plugin, though maybe someone has created a function which be preferable: http://wordpress.org/extend/plugins/itempropwp/
and another for checking pages: http://www.easy-plugins.com/
and adding authorship to site: http://www.authorsure.com/
Forum: Reviews
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] JavaScript DisasterDitto here
Forum: Plugins
In reply to: [WP Rotator] order by custom post meta?This seems to have worked:
post_type=event&orderby=meta_value&meta_key=event_start_dateForum: Plugins
In reply to: [WP Rotator] order by custom post meta?reghyz, thanks for the reply. Will I have to unhook the rotator function via: `remove_filter(‘wp_rotator_featured_cell_markup’,’wp_rotator_featured_cell_m arkup’);
add_filter(‘wp_rotator_featured_cell_markup’,’be_wp_rotator_featured_cell_m arkup’); `Forum: Plugins
In reply to: [WP Rotator] order by custom post meta?In other words, if I could achieve the following via Post Query Vars: post_type=event&orderby=event_start_date&order=DESC
Forum: Fixing WordPress
In reply to: rightsproblem after reinstallationForum: Fixing WordPress
In reply to: rightsproblem after reinstallationwith root permissions you should be able to
sudo chown username:group userfiles/uploads and wp-content/gallery? Also, take a look at http://wordpress.org/support/topic/usergroup-id-99-file-permission-on-domain-host?replies=8Forum: Fixing WordPress
In reply to: 403 Forbidden errormost likely it’s a server configuration issue that your Web Hosting provider should deal with
Forum: Fixing WordPress
In reply to: 403 Forbidden errorhave you taken a look at the server logs?
@idope and others; thanks for the fix. Happened today while adding a new site to my multisite. This fixed it lickidy split!
Yea! It works beautifully. Thank you for sharing your fix. Nub, yes. Shows what a nub I really am.
@ronstrilaeff – would be so kind as to help a php nob? Where in the below code does your fix
(('on' == strtolower($_SERVER['HTTPS']))belong?// Return Current URL function _trackableshare_buildurl() { return 'http'.($_SERVER['HTTPS']?'s':'').'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; } // Return Button Paths function _trackableshare_setpaths($file,$admin=false) { if($file == 'custom') { $path = WP_CONTENT_DIR.'/uploads/trackableshare/'; $url = ($_SERVER['HTTPS']?str_replace('http://','https://',WP_CONTENT_URL):WP_CONTENT_URL).'/uploads/trackableshare/'; } else { $path = ($admin?'../':'').TRACKABLESHARE_PLUGINS.'/'.TRACKABLESHARE_DIRNAME.'/buttons/'.$file.'/'; $url = ($_SERVER['HTTPS']?str_replace('http://','https://',WP_PLUGIN_URL):WP_PLUGIN_URL).'/'.TRACKABLESHARE_DIRNAME.'/buttons/'.$file.'/'; } return array($path,$url); }Thank you!
Forum: Plugins
In reply to: [Trackable Social Share Icons] Icons Display on ApacheIs there a reason why the share icons are running through SSL? Also, “buttons/1//tu” it seems to add an additional “/” in the path. Thanks for a very promising plugin.