danny144
Forum Replies Created
-
Forum: Plugins
In reply to: [Podcast Player - Your Podcasting Companion] Not displaying on front endWow thank you for your quick response.
You were 100% right in terms of the mediaelement-core-js.
I disabled all the plugins and re-enabled them but the issue still persisted so must be the theme. I’ll raise a case with the theme developerAs a temporary fix I’ve added an entry in to the header.php to manually call the file you mentioned and that seems to be a working workaround!
Thank you for the really prompt response, wasn’t expecting it from a free plugin!
Hi,
The website is lavishlettingsltd.co.uk
The url for the product that we are using the plugin with is
http://lavishlettingsltd.co.uk/product/additional-services/
I have tried disabling the name your price plugin that you’ll see on there but that hasn’t helped at all
Thanks
Danny
Forum: Plugins
In reply to: [Engage Forms] Form reference number not working in emailSorry to re-open an old topic.
I’ve just noticed this breaks if I have a form with Stripe integration.
I have two forms:
One for free signup
one for paid signup using the Stripe integrationUsing the free form the {_FORM_REF} is shown as the actual reference whereas in the Stripe form it shows the shortcode.
Not sure if this is something that was missed in the patch?
Forum: Plugins
In reply to: [Engage Forms] Form reference number not working in emailThank you for the speedy response!
Just updated the plugin and is now all working correctly!
Just out of interest is there anything at all in the pipeline for subscription payments within the Stripe integration? Would be a great addition to the plugin.
- This reply was modified 9 years, 3 months ago by danny144.
Forum: Themes and Templates
In reply to: [One Page] Mobile Navigation GlitchOkay I have a solution that semi works for you!
You need to go to wp-content/themes/one-page/js/mobile-menu.js
Then scroll to the bottom and find the piece of code
append_to.find('a').click(function(event) { event.stopPropagation();and change this to
append_to.find('a').click(function(event) { $menu_nav.slideUp(500); event.stopPropagation();The menu now hides but you have to click it twice to get it to work again, not entirely sure how to change that so it restores it to it’s original state but at least it hides properly and users may just think they hadn’t clicked it properly the first time :p Let me know if it works for you
Forum: Themes and Templates
In reply to: [One Page] Mobile Navigation GlitchI’m having a look at this as we speak, will let you know if I find anything.
Forum: Themes and Templates
In reply to: [One Page] additional social mediaIf you go in to the style.css and change the image links for Pinterest and RSS to LinkedIn and Vimeo images then you can just use the boxes in the admin panel accordingly So just put your linkedin link in the pinterest box and the vimeo link in the RSS box. It’s a bit of a botch but it should work. If its for a client then you can always go into the template files for the admin section and change the label of the text box but this isn’t really necessary
Forum: Themes and Templates
In reply to: [One Page] Unable to customize One Page theme.footer { padding-top:52px; background:#111; overflow:hidden; color: #d8d4d4; padding-bottom:50px; }change the
background:#111;to the colour of your choiceAre you still having this issue?
Have you got a link to your site.
Forum: Themes and Templates
In reply to: [One Page] position of the header menueJust tried to take a look but your link directs to the wp-admin login page
Forum: Themes and Templates
In reply to: [One Page] Social IconsNot the developer but hopefully this will help
You need to add
background-size: 100%;under the code containing the social icons you wish to make larger then change the css value for example.social_icons .social_logos li.fb a { background: url('images/facebook.png') no-repeat 0 0; background-size: 100%; width: 25px; height: 25px;The only thing is the original images used by the developer are too small and blur when given a larger value therefore will either have to change the links to different images or replace the original images in your wp-content/themes/one-page/images to the images of your choice!
Also to accommodate the larger images you will need to change the height of the top bar.
This is under the
.social_wrapperThis is trial and error depending how larger you have made your icons. a general rule is increase it first by the difference in size then fine tweak it.Hope this helps. If you need any more help let me know
Forum: Themes and Templates
In reply to: [One Page] Problem with headerNo problem, glad you got it fixed. Noticed the dev wasn’t answering any questions so thought I’d go through and try and help a few people out ha
Forum: Themes and Templates
In reply to: [One Page] Price tableThe easiest way to do a table would be to code it in
<table> <tr> <td>Row 1, column 1</td> <td>Row 1, column 2</td> <td>Row 1, column 3</td> </tr> <tr> <td>Row 2, column 1</td> <td>Row 2, column 2</td> <td>Row 2, column 3</td> </tr> </table>That creates a simple 3 row, 3 column table.
<tr>controls the rows,<td>controls the columnsForum: Themes and Templates
In reply to: [One Page] Problem with headerI’m not entirely sure what you mean? When I go on the site and click the button it takes me to the agenda page with the menu bar with one item then when I click back the menu bar scrolls exactly like it was before. What browser are you using?
Forum: Themes and Templates
In reply to: [One Page] How to add more sections ?I’m not the designer of the theme but that this isn’t possible without extensive modification to the code. You would need to code individual options for each area that you wanted to change.
The only potential way to do this is to go into the code and copy the section that you would like to duplicate and paste it in the position you would like it. You’d then need to change the id of the pasted section to what you wanted e.g. Portfolio. You would then have to take out the variables and replace them with the content you wanted to display. To get the navigation working you would need to add the link to that section.
A lot of work, but possible.