Preserved
Forum Replies Created
-
Forum: Plugins
In reply to: [Timeline Express] Icons missing?Marking this resolved. Great support!
Forum: Plugins
In reply to: [Timeline Express] Icons missing?That was it!
http://speedplay2015.com/bicycle-pedal-timeline/Thanks!
Forum: Plugins
In reply to: [Timeline Express] Icons missing?Of course, thanks for looking.
Ugg! I do too now. I don’t know what’s going on. I did today disable the plugins cache for developer mode.
Either way, thank you.
http://speedplay2015.com/speedplay-retailers/
Zipcode 99709 – Goldstream and the test store both have description text.
Thanks, I did see that thread, and have added `add_filter( ‘wpsl_include_post_content’, ‘__return_true’ ); and cleared the Locator Transient Cache and still no description.
I then added this instead: https://gist.github.com/tijmensmit/ad9fb38fd9d7eaa2c5d7 with no luck also.
?? Is description going away? I no longer see it in the store editor.
Wondering if wpsl_info_window_template is a solution.
The following does not work? Description may not be available to info_window_emplate.
add_filter( ‘wpsl_info_window_template’, ‘custom_info_window_template’ );
function custom_info_window_template() {
$info_window_template = ‘<div data-store-id=”<%= id %>” class=”wpsl-info-window”>’ . “\r\n”;
$info_window_template .= “\t\t” . ‘<p>’ . “\r\n”;
$info_window_template .= “\t\t\t” . wpsl_store_header_template() . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<span><%= address %></span>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<% if ( address2 ) { %>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<span><%= address2 %></span>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<% if ( description ) { %>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<%= description %>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
$info_window_template .= “\t\t\t” . ‘<span>’ . wpsl_address_format_placeholders() . ‘</span>’ . “\r\n”;
$info_window_template .= “\t\t” . ‘</p>’ . “\r\n”;/**
* Include the data from a custom field called ‘my_textinput’.
*
* Before you can access the ‘my_textinput’ data in the template,
* you first need to make sure the data is included in the JSON output.
*
* You can make the data accessible through the wpsl_frontend_meta_fields filter.
*/
$info_window_template .= “\t\t” . ‘<% if ( my_textinput ) { %>’ . “\r\n”;
$info_window_template .= “\t\t” . ‘<p><%= my_textinput %></p>’ . “\r\n”;
$info_window_template .= “\t\t” . ‘<% } %>’ . “\r\n”;$info_window_template .= “\t\t” . ‘<%= createInfoWindowActions( id ) %>’ . “\r\n”;
$info_window_template .= “\t” . ‘</div>’ . “\r\n”;return $info_window_template;
}Forum: Plugins
In reply to: [WP Store Locator] Android issueEasy fix! “On pageload move the mousecursor to the input field. **” It was a setting all along. I spent an hour trying to sort this out, then noticed that setting immediately after asking for help.
Thanks James. It ended up that my style sheet was the problem. It looked fine but wordpress would not properly recognize it. Even though it was activated and running fine, the Network Admin listed it as broken. I opened the file up Notepad, re-saved it and all is well. Some hidden characters in there? Who knows?
Forum: Networking WordPress
In reply to: Visual Editor not showing in subdomains?More on this. Disabling all plugins, and using Twenty Eleven theme don’t fix this. If I create a new user, and choose “Disable the visual editor when writing” I get a small editing toolbar with bold/italics options. If I then go back to the user admin and uncheck “Disable the visual editor when writing” I get no visual toolbar.
Forum: Networking WordPress
In reply to: Images not showingLooking at my settings.
.htaccess is okhttpd.conf is supposedly ok. HostGator confirms AllowOverride is set to “All”.
Blogs.dir set to 0775The site that won’t display the images is a subdomain site. The admin will upload the images properly to: /wp-content/blogs.dir/2/files I can see them via FTP.
In the subdomain site, the browser URL to the images is /files/2012/07/images.png
Does this look correct? Then what prevents the images from showing in a browser? Or in the admin?
Forum: Networking WordPress
In reply to: Images not showinghttpd.conf is good too. Hmm. Not sure that to check next.
Forum: Networking WordPress
In reply to: Images not showingI’ll look at httpd.conf. Here’s my .htaccess:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]Forum: Fixing WordPress
In reply to: Query and display data (custom posts?)More on this. I’ve sort of got something working:
<div class=”entry-content”>
<p><?php _e(‘Interested in what I have to say by category? Well you can search below…’, ‘genesis’); ?></p><h4><?php _e(‘Exhibitors’, ‘genesis’); ?></h4>
- <?php $recent = new WP_Query(“post_type=businesses&showposts=20”); while($recent->have_posts()) : $recent->the_post();?>
- ” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?> | <?php the_date(); ?>
<?php endwhile;?>
</div>
The above works, however I’d like to include some information that’s in the posts_meta table. I’d like the link that surrounds the title to be the www entry for this post which is held in the meta data. Is there a way? or am I going down a dead-end by using wp_query?
Forum: Fixing WordPress
In reply to: Search *sometimes* fails??Still more. I’m wondering if the size of the posts table has anything to do with this. The blog has about 150 posts that are very long. Lots of words to search. Could the search be timing out? Memory limit?