jhampton
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] Upload applicant pictureI would love to be able to do this as well. Any suggestions/help??
I’m sure four months later you don’t really need this anymore, but for anyone else with a similar problem – I just reduced the font size for the title. You can edit in the style.css file. Find this line:
body.page-template-homepage-php #mantle h1 { font-family: 'LeagueGothicRegular'; font-weight: lighter; font-size: 40px; margin-top: 18px; text-transform: uppercase; }
And I changed the font-size to 20px. Worked for my purposes after I adjusted the character count limit.
Forum: Plugins
In reply to: [Simple Cart & Buy Now] [Plugin: Simple Cart & Buy Now] product WeightTo be more clear, I would like to be able to insert the product weight as a field in the short code, so that the weight is transferred to paypal, so that i can use the ship by weight settings within paypal. I’m assuming there is a way to do this, I just don’t know how.
Perfect! Thanks! I really appreciate you working on that so quickly!
Awesome, thanks!
I’ll try that – thanks! I’m not very good with php, so this part is a bit more confusing for me. Thanks for your time on this!
Tried that – can’t find a testing line in my html. Here’s where I stuck it in the customize file:
function getItemPricing($itemname,$qty,$inputprice) {
$price=$inputprice;
return $price;
echo “Testing: “;
echo $itemname. “|” . $qty . “|” . $inputprice;
}Tried both a default theme, and deleting and reloading the plugin so everything was fresh. Still giving me a 0 price once I submit the options.
Still shoots a zero for the price when I use your sites option. Should I try reinstalling the plugin? The only thing I have changed is the css file.
The . doesn’t seem to affect it. Still doesn’t work. Nothing in my wordpress theme could affect it could it? I can try loading another theme if that’s the case.
Disabled all other plugins, no change. Using your example, the price converts over fine. So it’s just to do with the options I guess.
I am using the default template, thus using the default customize.php file. I have not made any changes to it. I am using the paypal sandbox for testing purposes. I will look into those settings on paypal. Any suggestions for why it’s not working with the option prices? You can see a dummy page I’ve setup at:
https://www.jh-designs.net/bonadea/shop/Here’s what I input on the page for the settings:
[scabn name=”All Purpose Flour” fshipping=”5.00″ options_name=”size” options=”1 lb.:5,5 lb.:15,20 lb:30″ qty_field = “true” b_title=”Add To Cart”]Forum: Fixing WordPress
In reply to: Can I have two different comment.php templates?I just had the same issue. I figured out after a bit of troubleshooting that when I changed the call to comments_template(‘comments2.php’); it didn’t really use the comments2.php file. Instead, it used the comments.php from the default template. So basically, my workaround was to just edit the comments.php file from the default template instead. Not the best workaround, but at least it works and i can have two separate comment files.