chavo
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite headache!!! Sub-directories not working!I found a solution for the local installation problem here:
http://wordpress.org/support/topic/multisite-local-install-with-xampp-subdomainsAnyway…I still can’t get the mulsite working on server based.
Any help?
Forum: Localhost Installs
In reply to: Multisite local install with XAMPP – Subdomainslemmonaid your solution worked for me for a local installation! Thanks!
ariwinokur, that is plugin author’s site. Is same plugin.
Hi. Did you find a solution for this problem?
I guess you can filter the field with this code.
In functions.php
<?php function limit_words($string, $word_limit) { $newstring = substr($string, 0, $word_limit); if(strlen($newstring) < strlen($string)) $newstring = $newstring."..."; echo "<p>".$newstring."</p>"; } ?>Then, in your theme, you can put something like this:
<?php $excerpt = get_post_meta($post->ID, 'overview', $single=true); limit_words($excerpt,100); ?>I don’t test it, but I think it will work.
ps: sorry for my english.
Forum: Plugins
In reply to: [Calendar Category] Use as a template tag?Mmmm…now I not getting days with posts as link 🙁
Edit: I figured out that I doesn’t work with future posts…
I think I will buy the combo pack, but first I have to wait for my clients answer.
Thanks for your reply!
I was reading about Region controls and I think it will be a perfect solution, but my client is asking me for a quote right now (I have to get him an amount of cost development today). Meanwhile, I guess I have to consider actual options.
So, the answer to my requirements is “yes”. I don’t need complex options, only allow suscribers to submit their listings (pay for it) selecting State and Profession and also give them access only to edit their listings. On other hand, I need that visitors could search by words, state and profession.
I will have 3 users levels: administrator (or editor maybe), listing suscribers (who will have to pay) and common visitors.
If my client approve my proposal, I will buy the premium modules (I’m really interested on Paypal and Google maps). I’m from Argentina. Can I buy it via Paypal?
Thanks for your reply
ps: once again, sorry for my english.
Did you try to change the “Category selection type” item to “checkbox”?
Forum: Plugins
In reply to: [Calendar Category] Use as a template tag?Hi!
Well…I copied the plugin’s code into my functions.php archive. I hard code it to filter cat I wish (look at this line):
function calcat_get_calendar( $initial = true, $echo = true, $category = CATEGORY ID )“CATEGORY ID” = your category id.
Then I paste the code in my template as follows:
<?php calcat_get_calendar(); ?>I also ajaxify the calendar!
I hope this helps to you.
ps: sorry for my english.
Forum: Hacks
In reply to: Include Sticky Posts in Total Post CountCan you solve these?
If not, try adding to your $args this line of code:
'ignore_sticky_posts' => 1What it does is to display sticky posts as “normal” posts.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Feature Request: Duplicate to different post typeHi. I’m looking for same feature. Did you find a solution?
I have 3 custom post type (each one with similar categories). Each post type is equal to a country. But sometimes I need to publish same product for each country. So, I think It would be really good to duplicate post from one post type to another.
ps: sorry for my english.
Forum: Plugins
In reply to: [Calendar Category] Use as a template tag?I figured out!
I noticed that this bug doesn’t happens If you use the default widget, I mean, If you drag the widget from the admin panel.
Anyway, I’m not a widget lover. I prefer to use template code. I tried your code and, in fact, It works ok on first load, but when you navigate trough months, all month links are displayed.
I use a specific category ID. My code looks like this:
<?php $instance = array( 'title' => '', 'category_id' => 12 ); $args = array( 'before_widget' => '<li class="widget ajax_calendar_widget">', 'after_widget' => '</li>', 'before_title' => '<h3>', 'after_title' => '</h3>' ); the_widget('AJAX_Calendar_Widget',$instance,$args); ?>I really would like to have ajaxified calendar filtering categories using template tags because of my need to add another aditional php code. But…it is getting really hard to figure out how to make it to work. Did you find any solution?
ps: sorry for my english.
Forum: Plugins
In reply to: [Facebook Album Sync] Bug displaying photos?Same thing is happening with albums. If albums doesn’t complete a row of 4, no row is showed.
Hi. I’m getting and error message with this url:
Do I have to change any parameter?
Thanks in advance.