epicdevspace
Forum Replies Created
-
Forum: Hacks
In reply to: Calling a plugin across two scriptsHi
What is the value of $json (before the var_dump) in your CALL_SHORTCODE.php?
Forum: Fixing WordPress
In reply to: sending mails in an intranetHi
Have you tried to modify your php.ini ?
[mail function]
; For Win32 only.
; https://php.net/smtp
SMTP = “mail.yourdomain.com”
; https://php.net/smtp-port
smtp_port = “port number”; For Win32 only.
; https://php.net/sendmail-from
sendmail_from = “[email protected]”Forum: Fixing WordPress
In reply to: get_footer not appearing after inserting another lineIt happens to all of us at some point! ??
All the best!
Forum: Fixing WordPress
In reply to: Google search boxHi
Add a
max-width:80%;
to your css. *Adjust the % to your preference.Forum: Hacks
In reply to: Calling a plugin across two scriptsHi Jason
Where is call_shortcode.php located?
Forum: Themes and Templates
In reply to: Homepage slider does not work after 4.5.2 WordPress updateHi
I had a look and it is difficult to pinpoint the issue without having wp-admin access.
Even if I provide a solution it is likely going to require code edits so you might want to hire a developer for this task.
Forum: Fixing WordPress
In reply to: get_footer not appearing after inserting another lineHi
Close the discuss thread div before loading the footer.
Let me know if this helps ??
Forum: Fixing WordPress
In reply to: sending mails in an intranetHi
What server are you using?
Forum: Fixing WordPress
In reply to: Update to WP 4.5.2 error 'not establish a secure connection'Hi
Download the latest WordPress manually and replace update.php on the site that’s problematic via ftp.
All the best!
Forum: Fixing WordPress
In reply to: Messages or chat or mailHi
Try Clickdesk
Forum: Fixing WordPress
In reply to: New Page HTMLHi
What server are you using btw?
Try creating a new folder and .htaccess
Forum: Fixing WordPress
In reply to: Page details are not showing upHi
I had a look at your site and couldn’t see your entry content on any of your pages.
If you log in to wp-admin and then navigate to the frontend of your site are you able to see your content displaying normally?
Forum: Fixing WordPress
In reply to: Log In Issue After Changing Base UrlAs a last resort you will need to modify the db as its likely that you modified either the WordPress address/ Site address instead of changing both urls.
Forum: Fixing WordPress
In reply to: Log In Issue After Changing Base UrlHi
Please provide your site’s url.
Forum: Fixing WordPress
In reply to: problem with child theme stylingIt’s a little strange not to have access to the parent theme but without browsing through your setup it’s difficult to make suggestions.
You can try adding this to your child theme’s functions.php
function theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
Let me know if that helps.
All the best ??