Alison
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fixing Mobile Option on TwentyfourteenHey, thanks so much for advising, I am still learning css! Solved!
Thanks Tobias! The page is set to full page and we still get it forced into a smaller content width.
I tried this but to no avail either…
.page-content {
margin: 0 auto;
max-width: 674px!important;
}Any ideas? Thanks so much, A x
Forum: Plugins
In reply to: [Advanced Forms for ACF] Undefined index: post_typeI can confirm I have the same issue also appearing on a site I manage.
N
otice: Undefined index: post_type in /home/————/public_html/wp-content/themes/Theme/functions/metabox.php on line 257 Notice: Undefined index: post_type in /home/————/public_html/wp-content/themes/Theme/functions/metabox.php on line 259 Notice: Undefined index: post_type in /home/————/public_html/wp-content/themes/Theme/functions/metabox.php on line 261 Notice: Undefined index: _portfolio_link_noncename in /home/————/public_html/wp-content/themes/Theme/functions/metabox.php on line 268 0
Forum: Fixing WordPress
In reply to: Twentyfourteen mobile issue (page width)Thank you luckychingi! It worked, I did not copy the @ symbol!
Thanks! A
Forum: Fixing WordPress
In reply to: Twentyfourteen mobile issue (page width)What if I hide page featured images in mobile views?
Forum: Fixing WordPress
In reply to: Twentyfourteen mobile issue (page width)Hi Luckychingi!
I tried that but I still have the home page sitting off to the right while in mobile?
Thanks for helping! ??Forum: Fixing WordPress
In reply to: Thumbs dissapeared (timthumb)Thanks, its strange because the images are in the folder. Thanks so much for looking.
Forum: Fixing WordPress
In reply to: Thumbs dissapeared (timthumb)Thanks bdbrown!
How should I resolve the error? The files are there as far as I can see.
Failed to load resource: the server responded with a status of 400 ()
Forum: Fixing WordPress
In reply to: Images only showing up in some browsers?Thanks Andrew, turned out it was an issue with the hsts file. It was forcing the site to load https instead of http on the friends browser. Once it was cleared things loaded properly.
https://classically.me/blogs/how-clear-hsts-settings-major-browsers
Thanks warmarks! As of now the hosting company solved it in the end.
I appreciate the response. a***xo
Update: The display-opencart-category was solved by renaming that plugin, but the other login page still is there. A xo
Forum: Fixing WordPress
In reply to: Jetpack Install ProblemIm getting the same thing.
wp-includes/formatting.php on line 3774
Forum: Developing with WordPress
In reply to: Https and mixed content issueThanks Steve,
I found one more string that appeared on our site but the string locator could not find it either. But I tracked it down to this piece of code in a plugin I think. How can I force it to apply https? Its only on the standard login page now that it shows mixed content. https://www.easlce.eu/wp-login.php
I tried just deleting the image but the login page still requests the unsecure url of the logo: https://www.easlce.eu/wp-content/plugins/easlcemember/images/logo.pngThis is the code I believe that requests the image? Let me know if I should repost in a new thread, I was unsure since its along the same issue. I appreciate the help! x
$default_options["login_reg_logo_src"] = $GLOBALS["WS_PLUGIN__"]["easlcemember"]["c"]["dir_url"]."/images/logo.png"; $default_options["login_reg_logo_src_width"] = "550"; $default_options["login_reg_logo_src_height"] = "100"; $default_options["login_reg_logo_url"] = home_url("/"); $default_options["login_reg_logo_title"] = get_bloginfo("name"); /**/
- This reply was modified 7 years, 10 months ago by Alison.
Forum: Developing with WordPress
In reply to: Https and mixed content issueHi thanks Steve, strangely “better search replace” did not flag that url. But I ended up discovering the php file and editing the url in error. All is good now. Thanks both of you for the help!
A
Forum: Developing with WordPress
In reply to: Https and mixed content issueUpdate: Found where things are loading- its a slide show. Where would one find this script to edit within a theme? And, if found, can I simply change the links to https? Thanks.
<!-- Slideshow Wrapper --> <div id="slide-wrapper"> <!-- Slideshow Static --> <div class="static-block"> <!-- Removed --> <a href="javascript:gotoshow()"><img src="https://174.36.243.202/~easlceeu/wp-content/uploads/2011/12/a1.pngg" name="slide" border=0 width=620 height=346></a> <script> <!-- //configure the paths of the images, plus corresponding target links slideshowimages("https://www.easlce.eu/wp-content/uploads/2011/12/a1.png","https://www.easlce.eu/wp-content/uploads/2011/12/a2.png","https://www.easlce.eu/wp-content/uploads/2011/12/a3.png") slideshowlinks("https://www.easlce.eu/about-us/","https://www.easlce.eu/about-us/","https://www.easlce.eu/about-us/") //configure the speed of the slideshow, in miliseconds var slideshowspeed=3100 var whichlink=0 var whichimage=0 function slideit(){ if (!document.images) return document.images.slide.src=slideimages[whichimage].src whichlink=whichimage if (whichimage<slideimages.length-1) whichimage++ else whichimage=0 setTimeout("slideit()",slideshowspeed) } slideit() //--> </script>
- This reply was modified 7 years, 10 months ago by Alison.