caspan
Forum Replies Created
-
Well I have found that its Worpress doing it. It is taking extra line breaks and replacing them with <P>BR</P> tags, i have kind of found a way around it a little bit but not a perfect solution. The developer is looking to remove the extar line breaks added by his tag replacement engine so that the built in line breaks to BR engine does not see them.
I changed the theme to the default one and disabled plugins except for the one I am using. I am still seeing the issue, Ill look at the style guide though bout none of the <p> tags have classes on them and the default is not changed in the browser using devtools to check
It cant be the theme adding it because it only shows up when i put the code in i mentioned above. Its being responsively added when the tags for this plugin are evaluated
I finally figured it out.. The theme that I had installed there was an error in the Common.js file said if the screen width was greater then 999px freeze the top frame (which was removed) so it errored out and didn’t run anymore JS including your plugin but that error would only happen when the screen was larger then 999px..
Thank you for you help, i just got it fixed last night as was going to come in and close the ticket. I am guessing by the time you saw it that it was fixed!
Thanks again for a very cool and much needed plugin!
Forum: Plugins
In reply to: [Eazyest Gallery] In settings get errorNope I moved my hosting to Linux and the problem went away. Looks like it was only written for Apache not IIS
So does this mean that every time I update the parent theme that I have to copy the admin folder over to the child? Is this by design? Is this the why child themes should work? New to child themes and was just curious?
Forum: Requests and Feedback
In reply to: Bug – Title of Post Causes The Permalink To 404Okay well that is just weird.. It wont work for me no matter how many times I try.
Could it be that i am on an IIS7 server? would that have anything to do with URL rewrites
for reference my web.config is below
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”Main Rule” stopProcessing=”true”>
<match url=”.*” />
<conditions logicalGrouping=”MatchAll”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php/{R:0}” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>