Sandra l***
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my search engine not working (min price and max price)You are using a commercial theme. And your problem seems related to the theme standard feature. You should seek help from Templatic.
Forum: Fixing WordPress
In reply to: Favicon not showing up in Chrome or IEThis is where your site is looking for the favicon https://www.sockfancy.com/wp-content/themes/sockfancy/favicon.ico –
When I try to display it, your site yields a 404 error (page not found).Forum: Networking WordPress
In reply to: Random character showing on front and in dashboardDon’t know if that could be related but I got something similar when I upgraded my site to the latest wp release, the culprit being the following lines in the theme functions.php –
add_filter(‘login_headerurl’, … );
add_filter(‘login_headertitle’, … );Have a look here for more details : https://www.ads-software.com/support/topic/after-updating-to-34-the-login_headerurl-login_headertitle-stoped-working?replies=9
Forum: Networking WordPress
In reply to: Rename root siteIf I understand correctly, you do not need a multisite setup. You do not need to have as many separate blogs (or sites) as you have subjects.
You just need relevant categories. If all your posts related to music are associated to a category called “Music”, then you can go in Appearance > Menu; in the left column, at the bottom, you will find all your categories. You can select the category “Music” and add it to your menu. When people will select the “Music” Tab, they will access to all the blog posts belonging to the “Music” category –
Forum: Networking WordPress
In reply to: Rename root siteIf you do that… what would you have in the root directory ?
Forum: Fixing WordPress
In reply to: Odd paragraph just below 'Leave a Comment'I have looked at the free Mantra theme (https://www.ads-software.com/extend/themes/mantra) and there’s nothing. You have to look elsewhere. Are you using a child theme? Which plugins do you use?
Forum: Fixing WordPress
In reply to: How do I apply a CSS style to a shortcodeThen the css would read :
.soliloquy-container { background:none repeat scroll 0 0 #fff; border:1px solid #dfdfdf; margin-bottom:4px; padding:7px; -moz-box-shadow:3px 3px 10px -3px #808381; -webkit-box-shadow:3px 3px 10px -3px #808381; }
Forum: Fixing WordPress
In reply to: Site down (white screen) Help??If you look at the apache log files (ask your hoster if you don’t know where there are), you should find the error that generate this Error 500. This is the only way to diagnose this kind of error –
Forum: Fixing WordPress
In reply to: How do I apply a CSS style to a shortcodeJust occurred to me that the slider on the page you point out is this one https://www.ads-software.com/extend/plugins/soliloquy-lite/ not promoslider –
Forum: Fixing WordPress
In reply to: Email after new post shows only Blogname and TitleYes, I visited your site already.
Sending an email after a new post is not WP standard behavior. So it is either your theme or a plugin. All in One SEO does not send this king of email.
Maybe you should check with the company that edits your commercial theme?
Forum: Fixing WordPress
In reply to: WordPress unexpected end of file@nsathees is right. This is how your file should look like:
<?php get_header(); ?> <div class="container"> <div class="main-content"> <?php query_posts('posts_per_page=6&offset=1'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?>> <h2> <a href="<?php the_permalink() ?>"> <?php the_title(); ?> </a> </h2> <?php the_content(''); ?> </div> <?php endwhile; ?> <?php endif; ?> </div> <div class="sidebar"> </div> </div>
Forum: Fixing WordPress
In reply to: My site's been hacked, help please.>> It’s just facebook that’s doing it now, nothing else.
Can you post an example?
>> First, I can’t access certain files like my “wp-config” it denies me from editing it or even downloading it.
How do you do edit it?
Forum: Fixing WordPress
In reply to: How do I apply a CSS style to a shortcode[promoslider id=”2″]
=> The following is better:
[promoslider id="mainpage_slider"]
Then you can have this in your CSS file:
#mainpage_slider { background:none repeat scroll 0 0 #fff; border:1px solid #dfdfdf; margin-bottom:4px; padding:7px; -moz-box-shadow:3px 3px 10px -3px #808381; -webkit-box-shadow:3px 3px 10px -3px #808381; }
I haven’t tried this plugin myself; the above is based on the online help (https://www.ads-software.com/extend/plugins/promotion-slider/faq/).
Forum: Fixing WordPress
In reply to: Need help with weirdnessCan you post the site url, please?
Forum: Fixing WordPress
In reply to: Email after new post shows only Blogname and TitleAre you using jetpack?