shaijuelayidath
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How WordPress 2024 Theme Works under the hoodThanks for sharing it. But you were sharing me the basic documentation and an outline of the block theme introduction. But I would like to know more on the technical workflow of 2024 Theme regarding : How the data store in the DB while we edit the blocks, How we can create a new block theme & How we can create a child theme of 2024 theme etc.
Forum: Fixing WordPress
In reply to: How WordPress updates work and, why it is not affecting child themesHi James Huff, Thank you for fantastic simple explanation.
Thanks a lot for your exact observation about my question.Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] custom link issueHi Georgian Cocora,
This query works but after running this, HTML part is disappears. I’ll explain you what i did.
1) Created a ‘WCK Textfield’
2) Called it in my php page as follows:
3) In the localhost, my links will be as follows in the WCK CMS fields:
https://localhost/coinoneinvents/trading-accounting/
4) When I run the above SQL query, full HTMLs are disappearing in the Frontend.
5) But in the live site when i am giving the absolute URL as follows, its working fine.
https://coinoneinvents.com/trading-accounting/
6) Because of failure of SQL replacing query, now i am copy pasting each and every links in the Live Site.Thanks! for the Support
- This reply was modified 7 years, 11 months ago by shaijuelayidath.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] custom link issueHi Georgian Cocora, Thanks for your reply
Actually I am not a programming techie person…iam just a designer only…all the code i taken from tutorial sites and i am not aware about how WCK assigns id for its fields. Following is my URL details:
localhost: https://localhost/coinoneinvents/
remote: https://www.coinoneinvents.com/
So let me know how the query sytax for this which will changes all the WCK textfield links to remote name. Should i run this globally or just standing from ‘wp_postmeta’ table. Thanks for your support.Thanks Steve & Bcworks for suggestions, following is my work:
https://www.coinoneinvents.com/trial/
But interesting thing is in gtmetrix i got 100% page speed score. https://gtmetrix.com/reports/www.coinoneinvents.com/TwidkjVJHi Guido Scialfa
Thanks for your reply. Is there any alternate way for this.
Forum: Themes and Templates
In reply to: Search Result page DesignOK Thank You
Forum: Themes and Templates
In reply to: Search Result page DesignThank You for the suggestion i’ll refer about child themes. Is ‘twentyeleven’ theme is contains the functionality of wordpress, even if i make a child theme of ‘twentyeleven.
Forum: Themes and Templates
In reply to: Search Result page DesignI am very new to WordPress, the theme i selected is inbuilt theme of wordpress ‘Twentyeleven’ i am not incorporating any other theme. But I am modifying directly selecting from the theme folder eg. if i want to edit any thing in ‘header’ i’ll go
(wp-content/themes/twentyleven/header.php)
i could done other things execpt the ‘search result coming page’. I can’t getting any idea from which page it is coming from.Forum: Themes and Templates
In reply to: Search Result page DesignMy theme is ‘Twentyeleven’. When I search anything, the search result coming each one in a paragraph. With that paragraph a balooon also appearing and also some other side bar things. I want to delete these from the appropriate page.
Forum: Fixing WordPress
In reply to: The strangest thing browser tab and url conflict?How is it in locally, is it correct in locally and facing problem only in server. You were importing the database without delete the existing database ? If it is correct in localhost, try to delete the problem showing database after ‘taking a backup’ and import the fresh local database…just a try
Forum: Fixing WordPress
In reply to: PHP include is not working in pageYou can change your site titles in ‘Settings’ menu of the Dashboard.
1. Go to ‘Settings’
2. In ‘Settings’ –>Generall Settings
3. In ‘General Settings :
You can change your title of the Website in ‘Site Title’ tab and Additional Tag line in ‘Tagline’ tabForum: Fixing WordPress
In reply to: PHP include is not working in pageHi Chris Olbekson,
Thank youuu very very much…it works….the code you given me rocked…it is fineeee….
It was my experiment to convince the possibilites of ‘wordpress’
to one of my friend for a small project.
You really helped and inspired me instantly even if
my question is below average.
I visited you excellent site also.
You perfectly done the job of a consultant and a
real worthfull person here.
For my future doubts can i ask to you,
only as per your convenience…Forum: Fixing WordPress
In reply to: PHP include is not working in pagethank you for suggestion
Forum: Fixing WordPress
In reply to: PHP include is not working in page[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
The code i used in ‘slider.php’ is given below :
————————- slider.php —————————–
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/wp-content/themes/twentyeleven/js/jquery-1.2.6.min.js"></script> <script type="text/javascript"> /*** Simple jQuery Slideshow Script Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc. Please link out to me if you like it :) ***/ function slideSwitch() { var $active = $('#slideshow IMG.active'); if ( $active.length == 0 ) $active = $('#slideshow IMG:last'); // use this to pull the images in the order they appear in the markup var $next = $active.next().length ? $active.next() : $('#slideshow IMG:first'); // uncomment the 3 lines below to pull the images in random order // var $sibs = $active.siblings(); // var rndNum = Math.floor(Math.random() * $sibs.length ); // var $next = $( $sibs[ rndNum ] ); $active.addClass('last-active'); $next.css({opacity: 0.0}) .addClass('active') .animate({opacity: 1.0}, 1000, function() { $active.removeClass('active last-active'); }); } $(function() { setInterval( "slideSwitch()", 2000 ); }); </script> <div id="slidersection"> <div id="slideshow"> <img src="wp-content/themes/twentyeleven/images/transition1.jpg" alt="Slideshow Image 3" style="opacity: 1; " class=""> <img src="wp-content/themes/twentyeleven/images/transition2.jpg" alt="Slideshow Image 3" style="opacity: 1; " class=""> <img src="wp-content/themes/twentyeleven/images/transition3.jpg" alt="Slideshow Image 3" style="opacity: 1; " class=""> <img src="wp-content/themes/twentyeleven/images/transition4.jpg" alt="Slideshow Image 4" style="opacity: 1; " class=""> <img src="wp-content/themes/twentyeleven/images/transition5.jpg" alt="Slideshow Image 5" style="opacity: 1; " class="active"> </div></div>
——————————————————————-
Now i put the code you given at last of the ‘functions.php’
————————————————————-add_shortcode( 'myslider', 'slider_sc_handler' ); function slider_sc_handler() { ob_start (); include_once( get_stylesheet_directory() .'/slider.php' ); $content = ob_get_clean(); return $content; }
————————————————————–
then i added [myslider] in my page..but shows the text as it is..
is it required to set my path before the file name..or is any specific place to add the shortcode infunctions.php