edgarsso
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WordPress Event Calendar] Code SampleEven though the documentation could need some improvement, I believe this plugin is excellent! I really want to thank the developers for sharing this plugin with the WordPress community.
I’m going to see if I can format it in the calendar format. If I can pull it off well I will post the code here.
Forum: Plugins
In reply to: [Plugin: WordPress Event Calendar] Can’t set time zone.Maybe this code will help for display the time
<?php $queryObject->startTime(get_option('time_format'));?>
Now, to make the plugin to display the list of events you need a code like this:
<?php //Replace calendarID value with the Calendar Category ID number you would like to display. In my case "2". $queryObject = new WEC_Query('calendarID=2'); //Start the loop while($queryObject->haveEvents()): $queryObject->the_event(); ?> <strong><?php $queryObject->eventTitle(); ?></strong><br /><br /> <strong>Fecha:</strong> <?php $queryObject->theDate(get_option('date_format'));?><br /> <strong>Hora:</strong> <?php $queryObject->startTime(get_option('time_format'));?><br /><br /> <?php $queryObject->eventExcerpt (); ?> <?php //End the loop endwhile; ?>
I kind of formatted how it will present the data but you can format it your own way. In other words, you can grab the line
<?php $queryObject->eventTitle(); ?>
and wrap it with <i> </i> if you would like to make the title show in italics. You can format the other tags as well.Forum: Plugins
In reply to: [Plugin: Events] tinyMCE not shownSame here.
Forum: Plugins
In reply to: [Plugin: Events] Events TinyMCE Advanced Description TextareaHello!
I tried to look for similar code in the current version of Events and haven’t found anything similar. Have adapted your modified code to the current version?Thanks!
EdForum: Requests and Feedback
In reply to: [Plugin: WPlite] Great PluginGreat! I was wondering whether it worked well with the WP 2.84. Sounds like it!
Forum: Fixing WordPress
In reply to: Custom text which can be changed from adminJatinst… maybe you should look for the K2 theme and look for a pluggin K2 hookup and see how they do it.
Forum: Fixing WordPress
In reply to: Custom text which can be changed from adminstvwlf,
I was looking for something like that code you provided. Thank you!. I put it in the code of my template and it works.. the only problem is that it lost the line breaks… do you know how to fix this? Any one?
Thanks,
Ed.Forum: Fixing WordPress
In reply to: Always show parent pagesNobody?
Forum: Plugins
In reply to: [Plugin] Update: Sub Pages widget v1.2Hey Soakai… your site disappeared! :< Do you mind sharing your code with me? Let me know thanks!
Forum: Fixing WordPress
In reply to: Solved My “Insert Image into Post” Blank Popup Problem – SharingHello Guys! Happy to have another solution!
I tried everything that was specified above and nothing worked… however, while reading one of the the links referred above it clicked! Right before I start having this type of problems I was messing with the Permalinks… I went back and removed any customization I made and voila! Problem solved!I hope it helps you guys!
Forum: Plugins
In reply to: user privilegeYou might want to kindly consult with the developer of that plugin you are using. He/she might have some time to assist you.
Forum: Fixing WordPress
In reply to: Advanced user permissionsHello Bruno,
I believe this is the answer to your question. I hope you are familiar with WordPress… if you are then you already now how to install plugins and test them. Anyway, today I ran into this plugin that links users to categories.
Here it is:
Level2Categories
https://www.ads-software.com/extend/plugins/levels2categories/#post-551
Install it and see what happens.Hope it help!
Ed