cynthiamiur
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Paypal – DineroMail – ButtonDid you figure it out?
Yu can check any of the e-commerce plugins for wordpress to understand how it works. some of them, like wp e-commerce let you add multiple payment gateways, and dineromail offer some support from their website
Forum: Plugins
In reply to: [Plugin: Register Plus] register plus custom logo problemsI’m having the same problem, running wordpress 2.9.1 at the moment.
Any ideas?Forum: Fixing WordPress
In reply to: How to show a starting page that is displayed only ONCEI decided to go with your suggestion.
If there’s no cookie, then show splash.php and set up the cookie.
If there’s a cookie, then show me index.phpThe code I’m writing.. on index.php:
<?php
if(!isset($_COOKIE[‘no_splash’])) {
header(‘Location:myurl.com/splash.php’);
} else { ?>On splash.php:
<?php
$expire = time() + 60*60*24; // This means, expire in 1 day – 60 seconds * 60 minutes * 24 hours
setcookie(“no_splash”, “1”, $expire); // This makes the cookie. It goes in this order: setcookie(cookie_name, cookie_value, expiry_time)
?>I’m trying it now. Any suggestion how to improve?
Forum: Fixing WordPress
In reply to: How to show a starting page that is displayed only ONCEThats not exactly what I am looking for. I guess I dont need to check it by cookies.
This is more or less what I am looking for https://wordpresshero.com/hacks/creating-a-splash-page-for-wordpress.html/ however the code its not working at all.
Forum: Plugins
In reply to: Lightbox 2 compatibility to WordPress 2.5?hey there, I had the same problem and tried all the lightbox plugins i could find for wordpress. finally i added this one to my website and it worked perfectly:
Forum: Fixing WordPress
In reply to: Excerpt doesnt workSorry to bother you one more time, but I still have a question:
I read u said in a thread: “Normally there is no ‘multi-Page’ display as in the case of ‘multi-post’ display (like category or monthly archives)” which I understand. But I have, as I explained, a page with a template file, and Im using the Loop on that page and Im calling multiple posts there. I mean, you will see ONE page, but a LOT of posts in there. Why the excerpt or the ‘more’ doesnt work there, like they do on the main index? I cannot understand that, its the same loop code ??
Forum: Fixing WordPress
In reply to: Excerpt doesnt workok, so I wont be able to use excerpts in a page?
Forum: Fixing WordPress
In reply to: Excerpt in 2.2.2What if you try to link to: <?php the_permalink(); ?> with the excerpt?
Forum: Fixing WordPress
In reply to: Excerpt doesnt workMoshu,
I created a php file called Portfolio.php and I added this code at the beginning: <title>Portfolio</title><?php
/*
Template Name: Portfolio
*/
?>Then I copied the loop from the main index and now Im using this template with a Page called Portfolio. That’s where the ‘more’ tag doesnt work.
Is there a way to make it work?
Forum: Fixing WordPress
In reply to: Excerpt doesnt workyeah I know, I used the second method and I inserted the “more” tag. I’ve experimenting a little more and ‘more’ tag works perfectly in the main index but it doesnt work in a section I created used a template.php page. Should I use a plugin for that section? The ‘more’ tag only works in the main index?
Forum: Themes and Templates
In reply to: Putting flash swf in Headerjaredkc, i did what ILostMyDream said (btw, thanks for the great help, pal) and it works. The only thing u need to do in order to avoid the white box is to write the absolut path for the file, not only the usual images/file.swf path.
It will be something like this: https://www.yourwebsite/wordpress/wp-content/themes/urthemename/images/file.swf