Exponential
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress No Longer Sending Email NotificationsI’ve experienced the same problem.
Since my website auto updated I am not receiving any WordPress emails from my site. This includes contact form (contact form 7) emails which are users on my site complete.
Any help or assistance on this would be appreciated.
James
Forum: Fixing WordPress
In reply to: Permalinks not working after update to 3.8.2Yes, I had exactly the same problem however it does not seem to be an update with wordpress to 3.8.2 rather than the latest update (5.0.4) of the plugin itself.
http://ww.wp.xz.cn/support/plugin/quick-pagepost-redirect-plugin
Hi there,
It turns out I was running three versions of JQuery. Two in the footer and one which I think it via a plugin. Since updating the plugin I am now up to date so I can remove the other two versions and the site is fully functional.
The LinkedIn button now appears.
Thanks for the assistance.
James
Hi Richard,
Thank you for looking into it for me.
We are using the share buttons on our blog, here is a link to a blog post with the share links at the top. Within the settings we have LinkedIn enabled using official buttons.
I look forward to hearing from you in due course.
James
Forum: Fixing WordPress
In reply to: Drop down list of pages from a categoryBy doing more research and googling a few things I have found a solution using JQuery.
<script type='text/javascript'> $(window).load(function(){ $(document).ready(function(){ $('select option:contains("<?php echo get_the_title($ID); ?>")').prop('selected',true); }); }); </script>This adapted bit of codes grabs the current page name via “get_the_title” and then the JQuery sets that option as default using the :contains(text) selector.
Source: http://jsfiddle.net/halfcube/XyTtu/
Source: http://stackoverflow.com/questions/4781420/how-to-set-default-value-in-dropdownlist-using-jqueryForum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] hot to setr categories?I need to do the same thing. Did you find a solution Asis?
Forum: Fixing WordPress
In reply to: Drop down list of pages from a categoryI think I have made some progess. I have now managed to get a list of pages from within the same category as the current page using the following code (there is probably an easier way of doing however I am a beginner so please bare with!)
<form action="<? bloginfo('url'); ?>" method="get"> <select onChange="document.location = this.value" value="GO" class="form-control"> <?php ( $cat_ID ); ?> <?php $categories = get_the_category(); $category_id = $categories[0]->cat_ID; $pages = get_posts(array( 'category' => $category_id, 'post_type' => 'page', 'posts_per_page' => -1, 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC' )); foreach( $pages as $page ) { ?> <option value="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></option> <?php } ?> </select> </form>However, the only sticking point I have at the moment is how to set the Default value as the current page.
Any help would be appreciated!
Forum: Fixing WordPress
In reply to: Dynamically Insert a Custom Field into a ShortcodeCRACKED IT! Thank you very much for your help!! 🙂
<?php $courseID = get_post_meta($post->ID, "Course ID", true); $shortcode_cid = '[learndash_payment_buttons course_id="' . $courseID . '"]'; if($shortcode_cid) echo do_shortcode( $shortcode_cid ); ?>Forum: Fixing WordPress
In reply to: Dynamically Insert a Custom Field into a ShortcodeHi there, many thanks for your response! Much appreciated.
I have tried what you suggested and the output is just the Course ID and it is not including the shortcode.
Any suggestions?
I had the same problem and made the same change as fijnmedia suggested and it fixed it!
I don’t know why it’s fixed but it works! 🙂
Thanks
Forum: Plugins
In reply to: Email sign in pops up over homepage such as on groupon.comThis is exactly what I’m looking for also…
The best solution I have found is WP Super Popup 0.9.9 plugin and coding an email signup into the “Embed the following plain HTML content” setting.
The only problem with this is that the pop-up window can be closed (bottom right) which I don’t want to allow the user to do unless the enter an email address.
Any help on this would be great!
Forum: Fixing WordPress
In reply to: /wp-admin admin page won't load/ loginHey, thanks for your help.
I am a bit of an amateur when it comes to WordPress coding (I apologise) so I did not quite follow your instructions above.
Can you please explain it further if possible?
Forum: Fixing WordPress
In reply to: /wp-admin admin page won't load/ loginI have checked the WordPress Server Requirements as followed:
PHP 5.2.4 + – PHP Version 5.2.14 (OK)
MySQL 5.0 + – MySQL Server 5.1.49 (OK)
The mod_rewrite Apache module – Helion ISAPI_Rewrite 3.1.0077 Lite (?)
I believe this is an alternative to Apache?! So should be fine?
This all seems to be OK?
Any ideas?
Thanks in advance,
James
Forum: Fixing WordPress
In reply to: /wp-admin admin page won't load/ loginHi again,
I told you the wrong information before (bare with me as I am not an expert when it comes to this sort of thing!).
PHP Version 5.2.14 is what I am running.
I think there seems to be a problem with WordPress redirecting from /wp-admin to /wp-login.php and back. Although if I access /wp-login.php directly I am able to successfully login my Developer who is using a Mac only gets a blank white screen.
Forum: Fixing WordPress
In reply to: /wp-admin admin page won't load/ loginHi there,
Thanks for your response!
I have PHP Version information: 3.3.5
You have highlighted something very interesting… If I go to /wp-login.php I am able to login in with no problems!?
Thanks again for your help!
James