gadzilla
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Fields 2 Toolkit] Image Media FieldBTW: All website are updated to the newest version of WP.
Browser is newest version of Chrome. OS is windows 8.1
Using the following plugins on one of the websites:
WP Google Maps
Simple Custom Post Order
Simple CSS for widgets
Regenerate Thumbnails
Magic Fields 2 Toolkit
Magic Fields 2
Jetpack by WordPress.com
Google Analytics Dashboard for WP
Easy WP SMTP
Contact Form 7
CMS Tree Page View
Bootstrap 3 ShortcodesPHP versions is 5.4.14 Server is Windows Server 2012
Forum: Plugins
In reply to: [Magic Fields 2 Toolkit] Image Media FieldI’m having the same problem on several websites with the image field.
On one of them I can’t even click the “Add Media” button above the editor. Nothing happends. It’s like the popup is disabled.
I hope we can figure this out somehow.
Forum: Themes and Templates
In reply to: [Flat Bootstrap] Editor background color???Hi Tim,
Thank you for you reply! Its much appreciated! I will go ahead and apply the changes to the theme! I will be looking forward to the 1.6 version!
Thank you for a great theme! Keep up the good work!
Best Regards
Mike
Forum: Themes and Templates
In reply to: [Flat Bootstrap] Editor background color???Hi Tim!
I have the same problem here! Also seems like somethings is wrong with the fonts and margin of the editor?
Thanks!
Mike
Forum: Fixing WordPress
In reply to: Sub- and Subsubmenu problemI’m having the same problem. Hope that someone can figure this out.
Forum: Fixing WordPress
In reply to: <?php if (is_page(Home)): ?> problemI found out what was wrong.
I had to use the
<?php if (is_front_page()): ?>
instead, since you cannot use<?php if (is_page(Frontpage)): ?>
for detecting the front page or home page.Also i had to use the
<?php wp_reset_query(); ?>
before the<?php if (is_front_page()): ?>
to make it work.Read more about that here: <a′href=”https://www.ads-software.com/support/topic/269988?replies=14″>
So my code looks like this now:
`<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<?php wp_reset_query(); ?>
<?php if (is_front_page()): ?>
<div id=”sidebarfront”>
<div id=”bannerside”>
<img src=”https://gadzilla.dk.linux7.curanetserver.dk/wp-content/uploads/banner.jpg” width=”280″ height=”200″ /></div>
<div id=”bannerside”><img src=”https://gadzilla.dk.linux7.curanetserver.dk/wp-content/uploads/tilmeldnyhedsbrev_head.png” width=”211″ height=”19″ />
<p>
<input name=”textfield” type=”text” class=”newsmail_text” id=”textfield” value=”Navn” />
</p>
<p>
<input name=”textfield2″ type=”text” class=”newsmail_text” id=”textfield2″ value=”Email” />
</p></div>
<div id=”bannerside”><img src=”https://gadzilla.dk.linux7.curanetserver.dk/wp-content/uploads/tipenven_head.png” width=”105″ height=”19″ />
<p>
<input name=”textfield3″ type=”text” class=”newsmail_text” id=”textfield3″ value=”Dit navn” />
</p>
<p>
<input name=”textfield3″ type=”text” class=”newsmail_text” id=”textfield4″ value=”Din vens navn” />
</p> <p>
<input name=”textfield4″ type=”text” class=”newsmail_text” id=”textfield5″ value=”Din vens email” />
</p></div>
<?php else: ?>
<div id=”sidebar”>
<div id=”submenu”>-
<?php include(“submenu.php”); ?>
</div>
<?php endif; ?>’I hope this can save somebody else some time.