Seylin
Forum Replies Created
-
Forum: Installing WordPress
In reply to: separate WP for second domainThere are many steps, the first is to point that new domain’s DNS A records over to the IP address of your server.
Second would be to configure your web server to accept connections from that domain name and route them to your WP installation.
Third would be to get WordPress configured to accept that domain and route it to the correct site. So that last part is the tricky bit I’m guessing. There is a premium plugin that might make it easier on you if you can spring for it: http://premium.wpmudev.org/project/multi-domains/
Forum: Plugins
In reply to: [WooCommerce] List each filename per downloadable product?Here’s what I do:
add_filter( 'woocommerce_available_download_link', 'wctoolbox_available_download_link', 10, 2); function wctoolbox_available_download_link( $link, $download ) { $order = new WC_Order( $download['order_id'] ); $download_file_urls = $order->get_downloadable_file_urls( $download['product_id'], null, $download['download_id'] ); // Check each download URL and compare with the current URL // $key contains the real file URL and $value is the encoded URL foreach( $download_file_urls as $key => $value ) { preg_match_all('/key=([\w\d]+)/',$value,$value_file_id); preg_match_all('/key=([\w\d]+)/',$download['download_url'],$durl_file_id); if ($value_file_id==$durl_file_id) { $url_parts = explode( '/', parse_url( $key, PHP_URL_PATH ) ); $file_name = end( $url_parts ); $link = '<a href="' . esc_url( $download['download_url'] ) . '">' . $download['download_name'] . '</a> <small>( ' . $file_name . ' )</small>'; } } return $link; }Forum: Plugins
In reply to: [Member Access] Account activationThe WP Activation email is a pluggable function, I wonder how much trouble it would be to add an option to that to this member-access plugin …
Forum: Plugins
In reply to: [WP HTML Sitemap] How can I change link's color in SitemapYou need to edit a CSS stylesheet. The selector seems to be:
.wp_html_sitemap_categories ul a { color: #404040; font-size: 14px; }To override it, try something like (with a new color obviously):
body .wp_html_sitemap_categories ul a { color: #404040; font-size: 14px;Forum: Fixing WordPress
In reply to: Reading Settings How to hide Your latest postsYou’re welcome, glad you got it sorted!
One other thing I noticed is that your Home page is using the default widgets (the sidebar elements). You can edit those from Appearance -> Widgets.
Have fun!
Forum: Plugins
In reply to: Slider – Fixed backgroundI would use a grid system and make the first column not part of the slider. And have a row beneath the slider for the consistent footer area.
Forum: Themes and Templates
In reply to: Loop not working correctlyDoes your server have a log file? Do you see any errors in there? You may want to google WP DEBUG and turn that on in your wp-config.php file.
Forum: Fixing WordPress
In reply to: Reading Settings How to hide Your latest postsHave you set up a menu at all?
Go to Appearance -> Menus.
If there isn’t a menu, create one, and if your theme has a ‘Primary Navigation’ area, set it.
If there are menus, check for multiple menus, see if there’s a primary or top menu, and see what’s listed there. You likely need to just delete the first Home from that menu.
Forum: Themes and Templates
In reply to: [Leaf] Different Slider- und Thumb-PictureI’m not really familiar with those terms it doesn’t sound like they are part of the core of WordPress. Are you using a plugin?
Forum: Themes and Templates
In reply to: Adding Submenu to a Stubborn Theme's menuDropdown menus are going to be tough to just ‘bolt on’ to a theme, sorry to say. If they aren’t built in from the start you are looking at a world of pain to get them :/
You have a pretty simple layout so it would be trivial to find a new theme that you could switch to that already supports dropdown menus.
Forum: Fixing WordPress
In reply to: Reading Settings How to hide Your latest postsStrange. Do you have a URL you can share?
Forum: Fixing WordPress
In reply to: Two domains, no redirectYes, this is probably possible but it sounds like it’s not possible in your current hosting environment. Also, it’s not a good idea for SEO reasons. You will get points taken away for having duplicate content.
If you really need this you should consider moving to a hosting provider that can offer this kind of setup.
Forum: Fixing WordPress
In reply to: How to edit parent files in CleanRYou can change the ‘label’ (called a slug in WordPress) by looking for the page slug section below the title.
Regarding display of the pages in navigation menu or sidebar menu you’ll need to configure that in your menu. Hope that helps!
Forum: Fixing WordPress
In reply to: How to widen content to fill gap from sidebar?Hi there,
Does your theme have a full-width template? Go to that page and look for the Templates section and see if there’s a full-width one. If not you may need to get a bit more in depth into the code which might mean it’s easier for you to switch to a more flexible theme. Hope that helps!
Forum: Installing WordPress
In reply to: Struggling with installationProbably 🙂
Most likely your IIS server isn’t pointing to the right place for WordPress. Make sure your WordPress installation files are at the root level of your IIS server.