scorcher
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Hueman v 3.3.9 More IssuesHi,
I believe the padding is applied to individual widgets which would be
.sidebar .widget. You can look that up in your theme’s main CSS file.The best way to identify what elements you need to target is to fire up your browser’s Dev Tools and go through the structure of your web page. You will find the HTML markup/tags on the left side and the corresponding CSS on the right.
Forum: Developing with WordPress
In reply to: adding javascript to a pageHi.
First, your code is not correct for WordPress. By default you can’t use $ sign to access jQuery so you would do:
jQuery(document).ready(function($){ //code here });and then you can use $ sign, inside that function, to select elements.
Second, you can use a plugin called Scripts n Styles in order to attach the javascript to a post or page.
If you just want to hack your way around and be excited about your new page, you can just remove all the blank lines and paste the code in Text mode of the WP editor. That should work.
Forum: Themes and Templates
In reply to: [Hueman] Hueman v 3.3.9 More Issues@parwaiz-khan I guess for now you can “band-aid” the top bar and sidebar with this CSS:
#nav-topbar { -webkit-transform: translate(0px, 0px) !important; -moz-transform: translate(0px, 0px) !important; transform: translate(0px, 0px) !important; } .sidebar .sidebar-content { background-color: #fff !important; }Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Shortcodes not workingUpdate: I was nesting the shortcodes and somehow didn’t know that I was doing it wrong so they were not working. Solved this by calling do_shortcode() on $content in all the shortcodes defined.
Forum: Fixing WordPress
In reply to: recurring one-time paymentsI just got this from them;
You would not be able to do this with our plugin due to the restrictions from the Payment Gateways.
A little disappointing though…
Forum: Fixing WordPress
In reply to: recurring one-time paymentsJosh thank you for getting back to me. Here is what I got from them;
The reason products with recurring payments can not be added to a cart is payment gateways handle these payments differently. This is a restriction from the Payment Gateways.
Can someone be nice enough to guide me what route should I take in order to accomplish something like that?