myfreelance101
Forum Replies Created
-
You are awesome..
Thanks a lot for a GREAT PLUGIN and GREAT SUPPORT
Forum: Themes and Templates
In reply to: How to remove sidebar on mobile devicesif you can post a url, that will be helpful..:D
Forum: Themes and Templates
In reply to: How to remove sidebar on mobile devicesif your sidebar doesn’t have a lot of ads, it is a better way to do media queries instead of waiting for tech support. ??
make sure to put your media queries at the bottom of your css file or append your display css to important.(display: none !important;)
Forum: Themes and Templates
In reply to: How to remove sidebar on mobile devicesIf you are using framewrok, you need to hook the above solution so it will append whatever your framework supplies.
Forum: Themes and Templates
In reply to: Need very basic themeyou might want to try this.
https://www.ads-software.com/themes/stitchForum: Themes and Templates
In reply to: How to remove sidebar on mobile devicesmodify your theme’s sidebar call as per outlined below.
<?php if (wp_is_mobile() )
{
//it is a mobile device, you might want to add something
}
else
{
//it is not mobile, add your sidebar code here so the sidebar will appear only on big screens.
}
?>hope that helps.
Forum: Everything else WordPress
In reply to: About license agreementWell a lot of people is doing it, modifying a free core and extending it to monetize. It is not as if you are violating something or not but in the end it all boils down to personal decisions one should make.
Forum: Everything else WordPress
In reply to: About license agreementcontact the developer of the original plugin.
that is safe…^^
Forum: Localhost Installs
In reply to: SQL Database migration from WAMP to MAMP, How is this?make sure the path of your windows site mirrors the mac site, that would fix the issue.
hope it helps.
Forum: Localhost Installs
In reply to: testing site keeps linking to localhost addressIt will not show you what to edit, you should do it manually. Search your database for the occurrences of localhost and replace it with your new url.
After you are done with that, you should be good to go and you can access the admin of the live site.
alternatively, you can save some aspirin by using this
https://www.ads-software.com/plugins/duplicator/install in on localhost and start migration using it.
hope that helps.
Forum: Fixing WordPress
In reply to: This is Somewhat Embarrassing Isn't It"This is maybe because the server links is not reflecting your local links.
This is what is probably happening right now.
live site: yourdomain.com/page1
localhost site: yourdomain.com/page1It should have been:
live site: yourdomain.com/page1
localhost site: localhost/yoursite/page1You should do some manual url edit (find and replace) which is not really friendly. Alternatively, you can use automated site transfer using this https://www.ads-software.com/plugins/duplicator/
BE WARNED:
I have had bad experiences on using duplicator plugin in sites over 1gig in size, if your site is not too huge, then you can safely use this (based on my experience). Just make sure to have a backup copy of the database before firing up the plugin just to be safe.Use it at your own risk.
Hope that helps
cheers
Forum: Fixing WordPress
In reply to: Video using html5Integrate your video safely to make it sure it displays on any device.
There are a couple of ways to do this but what I am using for a client site is Flowpalyer from https://flowplayer.org/. It is fluid, responsive and offers a lot of options.Here is a sample of a client site with video using flowplayer.
https://streetwisehomes.ca/Hope that helps.
cheers
Forum: Fixing WordPress
In reply to: html color code not working<h1><span style=”color: #000000;”><small><small><small>The Treehouse shows our appreciation to our customers by offering the following services:</small></small></small></span></h1>
Whatever color you use will not work because you are targeting [span-small], you should be targeting the text itself.
1. A quick way to fix:
modify the small class color value.
small {
color: #000;
}2. Another way to do this:
remove the small class in there.<h1><span style=”color: #000000; font-size: 16px; “>The Treehouse shows our appreciation to our customers by offering the following services:</span></h1>
Let me know if that helps.
cheers
Forum: Fixing WordPress
In reply to: Rounding Corners in HeaderAdd this to your css file.
#page { -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; }
[Please use the code buttons when posting code on these forums]
just change the value of radius to whatever value you wanted.
as for consumer research, you need to add a widget area on the header then just use that widget to add contents, alternatively you can use hooks to accomplish this task.
??
Forum: Fixing WordPress
In reply to: How to make links in a PDF work in WordPressYah, Josh is right, make it inside your pdf maker if I understand it right.
cheers