totallytech
Forum Replies Created
-
Forum: Plugins
In reply to: [Promotion Slider] Adding TITLE tag to the slider…Just incase anyone is trying to do the same thing…
Find line 27 and change
if( !$disable_links ) echo '<a href="'.$destination_url.'" target="'.$target.'">'; ?> to <code>if( !$disable_links ) echo '<a href="'.$destination_url.'" target="'.$target.'" alt="'.$title.'" title="'.$title.'">'; ?></code> Also find line 34 and change Find line 27 and changeif( !$disable_links ) echo ‘‘;
to
if( !$disable_links ) echo '<a href="'.$destination_url.'" target="'.$target.'" alt="'.$title.'" title="'.$title.'">';Forum: Plugins
In reply to: [Promotion Slider] background color doesn't changehave you added your code to your own css file or to the css file that came with the plugin?
any ideas?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Adding more columns?Scrub that, I’ve found it lol
changed “skin.css” to include this
.-skin-default.-columns2 .-item{ width: 48% ; } .-skin-default.-columns3 .-item{ width: 31.33% ; } .-skin-default.-columns4 .-item{ width: 23% ; } .-skin-default.-columns5 .-item{ width: 18% ; } .-skin-default.-columns6 .-item{ width: 14% ; } .-skin-default.-columns7 .-item{ width: 12% ; } .-skin-default.-columns8 .-item{ width: 10.5% ; } .-skin-default.-columns9 .-item{ width: 9.1% ; } .-skin-default.-columns10 .-item{ width: 8% ; } .-skin-default.-columns4 .-item .-links a { font-size: 12px; } .-skin-default.-columns5 .-item .-links a { font-size: 11px; } .-skin-default.-columns6 .-item .-links a { font-size: 11px; } .-skin-default.-columns7 .-item .-links a { font-size: 10px; } .-skin-default.-columns8 .-item .-links a { font-size: 10px; } .-skin-default.-columns9 .-item .-links a { font-size: 9px; } .-skin-default.-columns10 .-item .-links a { font-size: 9px; } .-skin-default-recent-items .-recent-item { clear: both; padding-top: 10px; }and changed “config.php” to:
$columns = array( '-columns2' => '2 Columns', '-columns3' => '3 Columns', '-columns4' => '4 Columns', '-columns5' => '5 Columns', '-columns6' => '6 Columns', '-columns7' => '7 Columns', '-columns8' => '8 Columns', '-columns9' => '9 Columns', '-columns10' => '10 Columns' );Forum: Plugins
In reply to: [WP eCommerce] Products list is emptyMy server had a php upgrade but other than that nothing has changed so I’m assuming there must be some code causing an issue.
I’ll set up a demo site with the latest versions of the software on it and test it before going live 🙂
Forum: Plugins
In reply to: [Cr3ativ Conference] Session Index PageTo koppit,
I saw you posted 3 years ago about Exec-PHP – a monor patch you made but its showing a 404. Do you still have the code?Forum: Plugins
In reply to: [Pricing Table] 1.3.5 crashes whole website…I ended up downgrading and rebuilding my entire set of tables with the older version. No idea what caused the trouble.
Its a great plugin so I would say try it and see how you get on 🙂
I changed
(function(j){j(document).on('nimble_portfolio_lightbox',function(event, obj){obj.items.prettyPhoto();})})(jQuery);to
(function(j){j(document).on('nimble_portfolio_lightbox',function(event, obj){obj.items.prettyPhoto({deeplinking: false});})})(jQuery);and it seems to have worked… is that the right way?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Order alphabetically?Scrub that, sorted…
Changed
$args['orderby'] = 'menu_order';
to$args['orderby'] = 'title';Forum: Hacks
In reply to: Displaying posts as a news feed?I was thinking I want to create a blog template page, add 2 sidebars (one for twitter, one for facebook) then run my news feed down the middle of it… 🙂
A little googling and its complete – thanks for pointing me in the right direction!
Forum: Plugins
In reply to: [BMo Expo - a Wordpress and NextGEN Gallery plugin] ArrowI see in the CSS there are some coding elements for Arrows, but I don’t think this has been done yet – although I can click to the left and right of my main image and it moves them on…
I would love to see arrows on this plugin!
Forum: Plugins
In reply to: [Contact Form 7] How to precheck a checkbox and add checkboxes on new lines.Ugh, and again…
Simply add
default:(num) where num is 1…
Forum: Plugins
In reply to: [Contact Form 7] How to precheck a checkbox and add checkboxes on new lines.Agh!
ok, so that will teach me for not checking the developers files first!
simply add
span.wpcf7-list-item { display: block; }to make them list in block!Now need to workout how to get it checked…
In custom-contact-forms/js/jquery.ui.datepicker.js
I found :
dateFormat: 'mm/dd/yy', // See format options on parseDateand set it to dd/mm/yy however this didnt change anything 🙁
Forum: Plugins
In reply to: [SlickQuiz] Location of CSS infoExcellent, thank you so much!!!!
Fixed it lol 😀