Syamil MJ
Forum Replies Created
-
Forum: Plugins
In reply to: [MediaEmbedder] [Plugin: MediaEmbedder] ScreenrThat’s great to hear. Cheers
Forum: Localhost Installs
In reply to: XAMPP, Local Network with WordPress problemsThank you James. I went ahead and do “search & replace” of my SQL database. then changed 2 lines on wp-config from “localhost” to my static local ip. It works great!
As for resolving localhost, I’d probably do that later since there are a few other installations here that still runs on localhost as the base url. Thanks for the tip anyway.
Also thanks to esmi for the pointers. ??
Cheers.
Forum: Localhost Installs
In reply to: XAMPP, Local Network with WordPress problemsYou mean I have to search for every instance of “localhost/” and change it to my local network IP?
I’d appreciate if you can offer a more detailed answer or point me to the right direction where this was done successfully.
Forum: Localhost Installs
In reply to: XAMPP, Local Network with WordPress problemsMy apologies, should have added that I was using Multisite.
I installed another instance of WordPress, changed the URL for both Site & WordPress URL and now I am able to access from another computer. Thanks for the tips!
Is there similar settings in Multisite where I can change these URLs? I’ve tried looking into both Network & Site admin, but there are none.
Forum: Localhost Installs
In reply to: XAMPP, Local Network with WordPress problemsDo you mean the Permalink Settings? I set it to “default”
Forum: Plugins
In reply to: [OptionTree] OptionTree "if filled"-type Option?empty value will return false, like so:
<?php if (get_option_tree( 'example')) { ?> Follow <?php get_option_tree( 'example', '', true ); ?> on Twiter. <? } ?>
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Request: Add header iconI love these https://iconsweets2.com/
Probably the best set of icons for interface-related styles.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] HooksI’m trying to replace Option Tree’s default style with a custom stylesheet, but this doesn’t seem to work.
function option_tree_custom_stylesheet() { wp_deregister_style('option-tree-style'); wp_enqueue_style( 'option-tree-custom-style', get_template_directory_uri().'/css/optionTree.css'); } add_action('option_tree_admin_header','option_tree_custom_stylesheet');
Written inside functions.php
Any help?
Forum: Fixing WordPress
In reply to: Website and WordPress Blog Hacked, Need HelpChange the username & password for WP database too. Better ask your host so they can find out how the hacker gets into your account.
Forum: Fixing WordPress
In reply to: Remove Sidebar on specific pagesWhat you possibly need is a custom page template
https://codex.www.ads-software.com/Pages#Creating_Your_Own_Page_TemplatesFor example:
1. Create a file namedfull-width.php
2. Copy the codes from here into the file https://pastebin.com/WM1e6J21
3. Add in your style.css file, just below#container
:
#container-full{width:100%; margin:0;}
4. Edit the page you want to have full width, then pick “Full Width” under Page Attributes > Templates.Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] 0.9.2.2 Works!Broken for me too – Minification doesn’t work
Forum: Plugins
In reply to: [Easy Nivo Slider] Hard code into post template?Try this
<?php echo do_shortcode('[nivo source="current-post"]'); ?>
Forum: Plugins
In reply to: [Facebook Connect] Users getting logged in as adminYes, mine too.
Forum: Plugins
In reply to: Hide Gravatar image if user doesn’t have one.Wanted to know this too.
Forum: Hacks
In reply to: Show different URL feed according to categoryJust to add though, that wp_rss is deprecated according to WP, but I’m not sure for what reason. If someone knows a better alternative, let me know OK?
Thanks