iluvwrdpress
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Layout issue with Divi themeHi…I’m having the same issues with the Divi theme. I added this to my functions.php file, but there are
‘s still above the excerpts:
remove_filter( ‘the_excerpt’, ‘wpautop’ );Any resolution with this issue?
Thanks!
Forum: Plugins
In reply to: [User Registration Aide] [Plugin: User Registration Aide] Header problemI see how to order the new fields you add, but I added a new field, middle name, and i want to move it between first and last name, but don’t see an option to do that?
Is this possible?
Thanks!
Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contenttryng to follow…this is what I have now….a little hard for me to follow, but how to i specify the page i want the content to be pulled from?
<?php
require(‘/the/path/to/your/wp-blog-header.php’);
?>
<?php header(“Content-type: application/vnd.wap.xhtml+xml; charset=UTF-8″);?><?xml version=”1.0″ encoding=”UTF-8”?><!DOCTYPE html PUBLIC “-//WAPFORUM//DTD XHTML Mobile 1.0//EN” “https://www.wapforum.org/DTD/xhtml-mobile10.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title>Sometitle</title>
</head>
<body>
<h1>Hello</h1>
<p><?php define(‘WP_USE_THEMES’, false); get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?></p>
</body>
</html>Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentok gotcha, thanks for bearing with me on this ??
so…..
I will use:<?php
require(‘/the/path/to/your/wp-blog-header.php’);
?>at the start of my page….now for the rest of the page for my mobile site, can i use this:
<?php header(“Content-type: application/vnd.wap.xhtml+xml; charset=UTF-8″);?><?xml version=”1.0″ encoding=”UTF-8”?><!DOCTYPE html PUBLIC “-//WAPFORUM//DTD XHTML Mobile 1.0//EN” “https://www.wapforum.org/DTD/xhtml-mobile10.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title>Sometitle</title>
</head>
<body>
<h1>Hello</h1>
<p><?php echo date(‘h:i A, j-M-y’); ?></p>
</body>
</html>Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentI’m looking through that link. I see the first part is to grab the header…etc…I actually don’t want the header or any parts on my mobile site, I’d just like the text content from the pages. Do I still need to grab the header, etc…?
Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentI have this code to generate the xhtml from php:
<?php header(“Content-type: application/vnd.wap.xhtml+xml; charset=UTF-8″);?><?xml version=”1.0″ encoding=”UTF-8”?><!DOCTYPE html PUBLIC “-//WAPFORUM//DTD XHTML Mobile 1.0//EN” “https://www.wapforum.org/DTD/xhtml-mobile10.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title>Sometitle</title>
</head>
<body>
<h1>Hello</h1>
<p><?php echo date(‘h:i A, j-M-y’); ?></p>
</body>
</html>If I want to display the text content from a page in my wordpress site, is that possible?
Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentcan you edit the carringon mobile plugin to take off search boxes, etc…? I don’t have blog posts on my site, can i remove that from the template?
Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentdo you have any examples you can point me to as a starting places so I can begin developing?
thanks!!
Forum: Everything else WordPress
In reply to: How to redirect links for mobile using htaccess?I tried WPTouch, but that is only for touch screen phones, correct?
what if the user doesn’t have a touch screen phone? I’d have to develop another mobile site for that case?Forum: Everything else WordPress
In reply to: How to redirect links for mobile using htaccess?how can i get only mobile users to be redirected?
Forum: Everything else WordPress
In reply to: How to redirect links for mobile using htaccess?if this is to redirect to my mobile site and i have a custom home page, does this get added to my custom home page?
Forum: Fixing WordPress
In reply to: XHTML mobile website – add wordpress contentbut if it’s a mobile site, can you use php? I thought you had to have xhtml?
Forum: Everything else WordPress
In reply to: How to redirect links for mobile using htaccess?Is this for redirecting users when they first hit your site to a mobile site or for links?
Forum: Fixing WordPress
In reply to: mobile redirect – warning cannot modify header infoOk…I added it to the very top of my customhome.php file. Seems to work but it doesn’t seem to redirect for my older verizon flip phone? Do you think i’m missing something in the expression to target all phones?
Forum: Fixing WordPress
In reply to: Editing background image in templateI copied this code excatly:
<style type=”text/css” media=”all”>
body { background-image: url(“<?php bloginfo(‘template_url’); ?>/images/background.jpg”);
background-repeat: repeat-x; }
</style>into my custom home page template….but no luck. It still shows the gray color as the background and not my image?