baidyanath
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WikiWP] Responsive VersionThanks. I am using the new version. Mobile version has menu icons. When I browse (wikiwp.com and mydomain) with mobile phone, the menu icons are not showing. Please check the issue (sprite image loading). I have used font awesome instead of image.
Forum: Plugins
In reply to: [Ajaxy Instant Search] Advanced Custom FieldsIt can be done. You need to edit the template by clicking on the “Edit template & settings” of your desired section. e.g.
In the post type search, I edited the “post” template to display “manufacturer” and “composition” by following:
<a href="{post_link}">{post_image_html}<span class="sf_text">{post_title} </span><span class="sf_small">Manufactured by {custom_field_manufacturer}, composition {custom_field_composition}</span></a>For custom fields: {custom_field_(YOUR_CUSTOM_FIELD_NAME)}
Forum: Plugins
In reply to: [Duda Mobile Website Builder] Unable to rid of DudaMobileAfter a long search I found a solution how to remove the duda mobile theme redirection(in case the recommended instruction from duda not working).
-This plugin waste enough time of mine in removing.
-I found a new URL has been created, with mobile.mydomain.com and the redirection has been in the written in the .htaccess with the following code:##BEGIN MOBILE (do not edit below this line) RewriteEngine On RewriteCond %{HTTP_USER_AGENT} ((.*iPhone.*)|(.*iPod.*)|(.*BlackBerry.*)|(.*Android.*Mobile.*)|(.*Windows\ CE.*)|(.*IEMobile.*)|(.*Opera\ Mini.*)|(.*Opera\ Mobi.*)) RewriteCond %{HTTP_COOKIE} !dm_show_classic RewriteCond %{QUERY_STRING} !no_redirect=true [NC] RewriteCond %{HTTP_HOST} ^www\. [NC,OR] RewriteCond %{HTTP_HOST} ^[0-9a-z-]+\.[a-z]+$ [NC] RewriteCond %{REQUEST_URI} ^/_dm/s/ [NC,OR] RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif|png|css|js|txt|ico|pdf|bmp|tif|mp3|wav|wma|asf|mp4|flv|mpg|avi|csv|doc|docx|xls|xlsx|ppt|pptx|zip|rar|tar|gz|dmg|iso)$ [NC] RewriteBase / RewriteRule ^(.*)$ http://mobile.e-odisha.com/ [R,L] ##END MOBILEThis is ridiculous. They should be flexible (if somebody donot like the plugin, they will uninstall), should mention in their support section.
Forum: Plugins
In reply to: [Duda Mobile Website Builder] Unable to rid of DudaMobileThe same issue is one of my website, not able to remove the theme while accessing through mobile devices. I have
– Deleted the theme in “http://my.dudamobile.com/home/dashboard@1”
-Looked for the code (to remove the redirection code) in header.php, index.php, functions.php of my theme, even other index.(html, php) file of my root FTP
-I have deactivated the plugin and deleted.
-Cleared cache, cookies.Now I am thinking its something like virus or worms. My last option would be download the folders and look for the code and go for “Mobile WordPress Theming” with my own that will give freedom and flexibility.
To remove the home page top section, remove the following section in header.php (it will remove the “homepage-top.php”)
<?php if(is_front_page() && 'posts' != get_option( 'show_on_front' )) get_template_part('homepage','top'); ?>Go to the “front-page.php” to remove or customize the text. Let me know if more customization required, as you can customize the “front-page.php” code as par your requirement.
<blockquote class="dark"> <div class="row-fluid"> <div class="span9"> <h3><?php echo edenfresh_get_theme_opts('home_featured_title','Welcome to Eden Fresh'); ?></h3> <?php echo edenfresh_get_theme_opts('home_featured_desc','Fully responsive, clean looking WordPress Theme') ?> </div> <div class="span3"> <a href="<?php echo edenfresh_get_theme_opts('home_featured_btnurl','http://wpeden.com'); ?>" class="btn btn-large btn-info pull-right"><?php echo edenfresh_get_theme_opts('home_featured_btntxt','Get It Now!'); ?></a> </div> </div> </blockquote>