Purab
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change widget styleThat is easily possible through changing the css of Mystique theme. You need the good CSS developer for this.
for which site you talking about we did not get your question exactly..
Forum: Themes and Templates
In reply to: Table cellpadding being overwritten?just put the following css code in your style.css file
td{margin:px}
This will solve your issue. for creating you need to change your theme file.Forum: Themes and Templates
In reply to: Entire layout gone/Error 404Your wordpress theme files are deleted. css file and files from wp-include folder is deleted. you need to again restore file.
Forum: Themes and Templates
In reply to: Add Sidebar to Display per Page in a Custom Themewhich theme you are using. through coding that easily possible.
Forum: Themes and Templates
In reply to: Looking for similar theme to thisthat theme is made as per requirement. you will not found slimier wordpress theme for free. you need to ask to experienced wordpress theme developer to create that kind of wordpress theme.
Forum: Themes and Templates
In reply to: Link break after each feeds.You used the thesis_18 as wordpress theme. That is not a css issue. you need to modify the theme code for resolving the issue. They used tag on upper side of “Market News & Data”.
If you want to remove the spacing between lines then you need to change the following file.
https://thefinance.sg/wp-content/themes/thesis_18/custom/layout.cssThis file will you will found in theme folder.
just change following value
margin-bottom:1.467em;
to
margin-bottom:1.0em;
That will solve your issue 80% percent.If you still facing the issue then write to me at [email address removed due to your URL is in violation of the WordPress trademark usage policy (see https://wordpressfoundation.org/trademark-policy/ for details)]
Forum: Themes and Templates
In reply to: Custom page template based on index.phpYou selected page as template so that page will execute as single page. so if you want to show the multiple posts then you need to use the query.
Forum: Themes and Templates
In reply to: Which file to edit to change the listening port?just fire following query on your wordpress database that will solve your issue.
update wp_options set option_name='https://myserver:86/webroot/' where option_name='siteurl';
If you still facing the issue then write to me at [email address removed due to your URL is in violation of the WordPress trademark usage policy (see https://wordpressfoundation.org/trademark-policy/ for details)]
Forum: Themes and Templates
In reply to: Custom page template based on index.phpuse the wp_query method before while statement.
$wp_query->query('showposts=10');
If you still facing the issue then write to me at [email address removed due to your URL is in violation of the WordPress trademark usage policy (see https://wordpressfoundation.org/trademark-policy/ for details)]
Forum: Hacks
In reply to: How to remove facebook "like" from home pageopen sft-publish.php from your simple facebook connect plugin and comment following line.`
$attachment[‘description’] = sfc_publish_make_excerpt($post->post_content);
`
This issue is not with the theme. this issue happening due to plugin.
If you still facing the issue then write to me at
[email address removed due to your URL is in violation of the WordPress trademark usage policy (see https://wordpressfoundation.org/trademark-policy/ for details)]Forum: Hacks
In reply to: Code to include default text inside every new blog postyou should use following code.
function mytext($content) { return "The addtional content goes here: ".$content; } add_filter('the_content', 'mytext');
If you still facing the issue then write to me at [email address removed]
Forum: Hacks
In reply to: Get user by email addressthere is no ready made function provided by wordpress you should try the following code.
$querystr = "SELECT wp_users.* FROM $wpdb->users WHERE wp_users.user_email = '[email protected]' "; $userinfo = $wpdb->get_row($querystr);
If you still facing the issue then write to me at [email address removed]
Forum: Hacks
In reply to: "Current" state for sidebar menuDont use the text widget. Use the pages widget in sidebar. that will solve your issue. I think issue is very minor..or you can copy paste the following code in sidebar.php file:
<ul> <?php wp_list_pages('sort_column=menu_order&title_li=<h2>' . __('Prose') . '</h2>' ); ?> </ul>
[email address removed]
Forum: Fixing WordPress
In reply to: Hierarchical custom post type – can't specify parentI checked your code. code is not complete.
[Blatant self-promotion removed – Your URL is in violation of the WordPress trademark usage policy (see https://wordpressfoundation.org/trademark-policy/ for details) and you are not providing the poster with any significant assistance.]