King818
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Accounts with CC informationThanks so much for the responses guys. Here’s my site for reference:
http://www.danielesenglishschool.com/en/perugia-2/
I want to make each hour (class) to have a 5euro checkout option. I want my students to have their accounts with all their information saved, so that they can easily purchase hour long classes again and again. It will be a pain to enter credit card information each time.
This is insanely hard for me to do alone, and I would greatly appreciate all respones. I’m sure someone here knows how I can do this.
Forum: Fixing WordPress
In reply to: Different LanguagesThanks guys!
Forum: Fixing WordPress
In reply to: ?php if ( have_comments() ) : ?For anyone incoming off of Google and wishing to learn how to do this, I managed to figure out a legitimate workaround.
I ended up using ‘comments_popup_link’ and used it as follows:
<?php comments_popup_link('</a>NO COMMENT MESSAGE DISPLAY TEXT GOES HERE', '<div style="visibility: hidden"> </div>', '<div style="visibility: hidden"> </div>'); ?>The way this works is by using a code which displays how many comments the page currently has, and then linking to the pages leave a comment field. You have three fields in the ”,”,”, and by default they are ‘0 comments’,’1 comment’,’% commments’. I used a visibility hidden code to kill the last two fields, and then replaced the default 0 comments with my display text. I also before displaying the text put a
</a>attribute which killed the link which would otherwise show up and link you to leaving a comment for the page.I then placed this in comments.php, in my case line 70.
Done!
Forum: Fixing WordPress
In reply to: ?php if ( have_comments() ) : ?Anyone? This is an integral part of my site as it is comment dependant. Thanks guys. If you have any leads at all please let me know.
Forum: Fixing WordPress
In reply to: ?php if ( have_comments() ) : ?Is there a specific way I should use it? I have looked through the document but couldn’t locate the part I needed.