Mobapper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Text not preoperly wrapping around imageTry placing the image at the beginning before the text and in the detail page give its position as left.
Forum: Installing WordPress
In reply to: Zipping filesYour mac is extracting the .zip files automatically. So you will see a folder named wordpress. If it doesn’t extract automatically then you should extract the file with name in the format “wordpress-x.0.zip”, where x is the version number.
Forum: Fixing WordPress
In reply to: Theme continuous deployment from bitbucket to windows azureThere are many ways to setup CI with git.
Manual deployment
- Create the theme folder with git initialised.
- Add its remote to bitbucket address.
- Push to the bitbucket repo and manually pull changes from server repo
Automatic deployment
- Create the theme folder with git initialised.
- Add its remote to bitbucket address.
- Use git hooks to automatically pull changes whenever something pushed to bitbucket
CI using tools
- Use Jenkins or similar tools to setup and configure git deployment.
Forum: Fixing WordPress
In reply to: Change Display on Mobile DetectThe problem with this implementation is that it consider tablet also as a mobile device. So the design might need to suffer a bit.
You should realize that this does not detect a mobile phone specifically, as a tablet is considered a mobile device
-from documentation.
The best way to implement this is to use Media Queries. Check the below link for a sample script.
http://stackoverflow.com/questions/21649274/how-to-show-hidden-button-with-css-media-query
You can create a menu with the structure you have specified. For creating menu from admin panel goto appearance>menu
Forum: Fixing WordPress
In reply to: Site takes some time to loadWP super cache is a good option. You can use the following plugins also along with WPSC to speed up the site.
- BJ Lazy Load
- GZip Ninja Speed Compression
- W3 Total Cache
Forum: Fixing WordPress
In reply to: Can't get post preview off home pageI can see the preview of your “Hello world” post in the home page. Do you want to display an image in the background of the post?
Forum: Fixing WordPress
In reply to: Copying a complete siteDo you want to change the domain that you are using or do you want to change only the content?
Forum: Fixing WordPress
In reply to: How have a different homepage only for mobile devicesYou can customise the theme by changing the properties in its css file. I think your theme is a “responsive theme” which changes its design depending on the devices.
In css it is done using media queries. In css file there will be a portion which starts with @media . In that line the width of the device will be specified in pixels. You can customize the design by changing the attributes there.
Here is a video from youtube which explains how to work with responsive themes https://www.youtube.com/watch?v=4QLE53bFC-E
And if you want a native mobile experience you can use plugins like Mobapper.
Forum: Fixing WordPress
In reply to: How to make my site live from example.com/wp636 to example.comYou can copy all the files from wp636 to the root folder. Then try to remove .htaccess redirection. It should work fine. After making sure .everything is fine then remove the folder wp636
Forum: Fixing WordPress
In reply to: Remove preview excerpts from blog postsThey are using templates to reuse the code that is why it is not showing in the index page.
In lotus theme I found two files where excerpt is displaying. You can try commenting one at a time and found which is getting called.
Option 1
Go to /inc/entry/news.php file and comment line number 37. There you can find the excerpt being echoed.Option 2
If the first one is not worked then goto Go to /inc/entry/post.php and comment line number 139.Forum: Fixing WordPress
In reply to: Remove preview excerpts from blog postsCheck in index.php normally it will be added there. If it is a free theme you can provide the link to download the theme. So that I can go through the source code and tell you which line to remove.
Forum: Fixing WordPress
In reply to: Remove preview excerpts from blog postsThe easiest way is to remove the code which is fetching the excerpt in the theme. You can search for get_the_excerpt() function and remove it.
And the other quick and dirty fix that you can use if make the excerpt content blank by setting space in excerpt box below the post field. You can opt this if you want to fix it quickly and you don’t have access to code.
Forum: Fixing WordPress
In reply to: How to Change h2 font type and colorIf nothing is working there is a quick fix that you can try out. Take the text tab and type your content in this format.
<span style=”font-size:30px;”>Your content<span>
It uses inline css so it will get priority over all other styling.
Forum: Installing WordPress
In reply to: .org or .comMost probably you will be using wordpress.com if you created it online.